toJson method

Map<String, dynamic> toJson()

Implementation

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