TableCellProperties.fromJson constructor

TableCellProperties.fromJson(
  1. 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,
      );