ColumnDescription.fromJson constructor

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

Implementation

factory ColumnDescription.fromJson(Map<String, dynamic> json) {
  return ColumnDescription(
    text: json['Text'] as String?,
  );
}