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