Column.fromJson constructor

Column.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Column.fromJson(Map<String, dynamic> json) {
  return Column(
    name: json['Name'] as String,
    comment: json['Comment'] as String?,
    type: json['Type'] as String?,
  );
}