TableCellProperties.fromJson constructor

TableCellProperties.fromJson(
  1. Map json_
)

Implementation

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