toJson method

Map<String, dynamic> toJson()

Implementation

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