TableRowProperties.fromJson constructor
TableRowProperties.fromJson(
- Map json_
Implementation
TableRowProperties.fromJson(core.Map json_)
: this(
minRowHeight: json_.containsKey('minRowHeight')
? Dimension.fromJson(
json_['minRowHeight'] as core.Map<core.String, core.dynamic>)
: null,
);