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