toJson method

Map<String, dynamic> toJson()

Implementation

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