PinTableHeaderRowsRequest.fromJson constructor

PinTableHeaderRowsRequest.fromJson(
  1. Map json_
)

Implementation

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