TableRowStyle.fromJson constructor

TableRowStyle.fromJson(
  1. Map json_
)

Implementation

TableRowStyle.fromJson(core.Map json_)
  : this(
      minRowHeight:
          json_.containsKey('minRowHeight')
              ? Dimension.fromJson(
                json_['minRowHeight'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      preventOverflow: json_['preventOverflow'] as core.bool?,
      tableHeader: json_['tableHeader'] as core.bool?,
    );