toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'c'] = this.c;
  json[r'f'] = this.f;
  json[r'k'] = this.k;
  return json;
}