toJson method

Map<String, dynamic> toJson()

Implementation

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