TableRowProperties.fromJson constructor

TableRowProperties.fromJson(
  1. Map json_
)

Implementation

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