toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final boolValue = this.boolValue;
  final comparator = this.comparator;
  final intValue = this.intValue;
  final key = this.key;
  final stringValue = this.stringValue;
  return {
    'boolValue': ?boolValue,
    'comparator': ?comparator,
    'intValue': ?intValue,
    'key': ?key,
    'stringValue': ?stringValue,
  };
}