TableCellProperties.fromJson constructor
TableCellProperties.fromJson(
- Map json_
Implementation
TableCellProperties.fromJson(core.Map json_)
: this(
contentAlignment: json_.containsKey('contentAlignment')
? json_['contentAlignment'] as core.String
: null,
tableCellBackgroundFill: json_.containsKey('tableCellBackgroundFill')
? TableCellBackgroundFill.fromJson(
json_['tableCellBackgroundFill']
as core.Map<core.String, core.dynamic>)
: null,
);