toJson method

Map<String, dynamic> toJson()

Implementation

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