factory KeyValuePair.fromJson(Map<String, dynamic> json) { return KeyValuePair( key: json['key'] as String?, value: json['value'] as int?, ); }