toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final excludeChats = this.excludeChats;
  final from = this.from;
  final hasAttachment = this.hasAttachment;
  final negatedQuery = this.negatedQuery;
  final query = this.query;
  final size = this.size;
  final sizeComparison = this.sizeComparison;
  final subject = this.subject;
  final to = this.to;
  return {
    'excludeChats': ?excludeChats,
    'from': ?from,
    'hasAttachment': ?hasAttachment,
    'negatedQuery': ?negatedQuery,
    'query': ?query,
    'size': ?size,
    'sizeComparison': ?sizeComparison,
    'subject': ?subject,
    'to': ?to,
  };
}