The Webfeed Flutter package for Appeto SDK.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
324 B

  1. import 'dart:core';
  2. import 'package:xml/xml.dart';
  3. String xmlGetString(XmlElement element, String name, {strict: true}) {
  4. try {
  5. return element
  6. .findElements(name)
  7. .first
  8. .text;
  9. } on StateError {
  10. if (strict) {
  11. throw new ArgumentError("$name not found");
  12. }
  13. }
  14. return null;
  15. }