UpdateTableRowStyleRequest.fromJson constructor

UpdateTableRowStyleRequest.fromJson(
  1. Map json_
)

Implementation

UpdateTableRowStyleRequest.fromJson(core.Map json_)
  : this(
      fields: json_['fields'] as core.String?,
      rowIndices:
          (json_['rowIndices'] as core.List?)
              ?.map((value) => value as core.int)
              .toList(),
      tableRowStyle:
          json_.containsKey('tableRowStyle')
              ? TableRowStyle.fromJson(
                json_['tableRowStyle'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      tableStartLocation:
          json_.containsKey('tableStartLocation')
              ? Location.fromJson(
                json_['tableStartLocation']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );