TableSchema.fromJson constructor
TableSchema.fromJson(
- Map json_
Implementation
TableSchema.fromJson(core.Map json_)
: this(
fields:
(json_['fields'] as core.List?)
?.map(
(value) => TableFieldSchema.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);