PinTableHeaderRowsRequest.fromJson constructor

PinTableHeaderRowsRequest.fromJson(
  1. Map json_
)

Implementation

PinTableHeaderRowsRequest.fromJson(core.Map json_)
  : this(
      pinnedHeaderRowsCount: json_['pinnedHeaderRowsCount'] as core.int?,
      tableStartLocation:
          json_.containsKey('tableStartLocation')
              ? Location.fromJson(
                json_['tableStartLocation']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );