toJson method

Map<String, dynamic> toJson()

Implementation

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