TableStyle.fromJson constructor
TableStyle.fromJson(
- Map json_
Implementation
TableStyle.fromJson(core.Map json_)
: this(
tableColumnProperties: json_.containsKey('tableColumnProperties')
? (json_['tableColumnProperties'] as core.List)
.map((value) => TableColumnProperties.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);