GridProperties.fromJson constructor

GridProperties.fromJson(
  1. Map json_
)

Implementation

GridProperties.fromJson(core.Map json_)
  : this(
      columnCount: json_['columnCount'] as core.int?,
      columnGroupControlAfter: json_['columnGroupControlAfter'] as core.bool?,
      frozenColumnCount: json_['frozenColumnCount'] as core.int?,
      frozenRowCount: json_['frozenRowCount'] as core.int?,
      hideGridlines: json_['hideGridlines'] as core.bool?,
      rowCount: json_['rowCount'] as core.int?,
      rowGroupControlAfter: json_['rowGroupControlAfter'] as core.bool?,
    );