TableColumnProperties.fromJson constructor

TableColumnProperties.fromJson(
  1. Map json_
)

Implementation

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