TableStyle.fromJson constructor

TableStyle.fromJson(
  1. Map json_
)

Implementation

TableStyle.fromJson(core.Map json_)
  : this(
      tableColumnProperties: (json_['tableColumnProperties'] as core.List?)
          ?.map(
            (value) => TableColumnProperties.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );