fix: Linter warnings
This commit is contained in:
parent
8eb270365c
commit
18afdf74e6
@ -72,7 +72,7 @@ class XmppConnectionResult {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class XmppConnection {
|
class XmppConnection {
|
||||||
/// [socket] is for debugging purposes.
|
/// [_socket] is for debugging purposes.
|
||||||
/// [connectionPingDuration] is the duration after which a ping will be sent to keep
|
/// [connectionPingDuration] is the duration after which a ping will be sent to keep
|
||||||
/// the connection open. Defaults to 15 minutes.
|
/// the connection open. Defaults to 15 minutes.
|
||||||
XmppConnection(
|
XmppConnection(
|
||||||
|
@ -78,7 +78,7 @@ class StanzaHandler extends Handler {
|
|||||||
} else if (tagXmlns != null) {
|
} else if (tagXmlns != null) {
|
||||||
return listContains(
|
return listContains(
|
||||||
node.children,
|
node.children,
|
||||||
(XMLNode _node) => _node.attributes.containsKey('xmlns') && _node.attributes['xmlns'] == tagXmlns,
|
(XMLNode node_) => node_.attributes.containsKey('xmlns') && node_.attributes['xmlns'] == tagXmlns,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import 'package:moxlib/moxlib.dart';
|
|
||||||
import 'package:moxxmpp/src/events.dart';
|
import 'package:moxxmpp/src/events.dart';
|
||||||
import 'package:moxxmpp/src/jid.dart';
|
import 'package:moxxmpp/src/jid.dart';
|
||||||
import 'package:moxxmpp/src/managers/base.dart';
|
import 'package:moxxmpp/src/managers/base.dart';
|
||||||
|
@ -2,7 +2,7 @@ import 'package:moxxmpp/src/namespaces.dart';
|
|||||||
import 'package:moxxmpp/src/stringxml.dart';
|
import 'package:moxxmpp/src/stringxml.dart';
|
||||||
|
|
||||||
class Stanza extends XMLNode {
|
class Stanza extends XMLNode {
|
||||||
|
// ignore: use_super_parameters
|
||||||
Stanza({ this.to, this.from, this.type, this.id, List<XMLNode> children = const [], required String tag, Map<String, String> attributes = const {} }) : super(
|
Stanza({ this.to, this.from, this.type, this.id, List<XMLNode> children = const [], required String tag, Map<String, String> attributes = const {} }) : super(
|
||||||
tag: tag,
|
tag: tag,
|
||||||
attributes: <String, dynamic>{
|
attributes: <String, dynamic>{
|
||||||
|
@ -52,7 +52,7 @@ class DataFormField {
|
|||||||
children: [
|
children: [
|
||||||
...description != null ? [XMLNode(tag: 'desc', text: description)] : [],
|
...description != null ? [XMLNode(tag: 'desc', text: description)] : [],
|
||||||
...isRequired ? [XMLNode(tag: 'required')] : [],
|
...isRequired ? [XMLNode(tag: 'required')] : [],
|
||||||
...values.map((value) => XMLNode(tag: 'value', text: value)).toList(),
|
...values.map((value) => XMLNode(tag: 'value', text: value)),
|
||||||
...options.map((option) => option.toXml())
|
...options.map((option) => option.toXml())
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
@ -88,14 +88,14 @@ class DataForm {
|
|||||||
'type': type
|
'type': type
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
...instructions.map((i) => XMLNode(tag: 'instruction', text: i)).toList(),
|
...instructions.map((i) => XMLNode(tag: 'instruction', text: i)),
|
||||||
...title != null ? [XMLNode(tag: 'title', text: title)] : [],
|
...title != null ? [XMLNode(tag: 'title', text: title)] : [],
|
||||||
...fields.map((field) => field.toXml()).toList(),
|
...fields.map((field) => field.toXml()),
|
||||||
...reported.map((report) => report.toXml()).toList(),
|
...reported.map((report) => report.toXml()),
|
||||||
...items.map((item) => XMLNode(
|
...items.map((item) => XMLNode(
|
||||||
tag: 'item',
|
tag: 'item',
|
||||||
children: item.map((i) => i.toXml()).toList(),
|
children: item.map((i) => i.toXml()).toList(),
|
||||||
),).toList(),
|
),),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -204,13 +204,13 @@ class DiscoManager extends XmppManagerBase {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
...getIdentities().map((identity) => identity.toXMLNode()).toList(),
|
...getIdentities().map((identity) => identity.toXMLNode()),
|
||||||
..._features.map((feat) {
|
..._features.map((feat) {
|
||||||
return XMLNode(
|
return XMLNode(
|
||||||
tag: 'feature',
|
tag: 'feature',
|
||||||
attributes: <String, dynamic>{ 'var': feat },
|
attributes: <String, dynamic>{ 'var': feat },
|
||||||
);
|
);
|
||||||
}).toList(),
|
}),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user