toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final columnName = this.columnName;
  final newColumnName = this.newColumnName;
  return {
    'ColumnName': columnName,
    'NewColumnName': newColumnName,
  };
}