UpdateTableRowStyleRequest.fromJson constructor

UpdateTableRowStyleRequest.fromJson(
  1. Map json_
)

Implementation

UpdateTableRowStyleRequest.fromJson(core.Map json_)
    : this(
        fields: json_.containsKey('fields')
            ? json_['fields'] as core.String
            : null,
        rowIndices: json_.containsKey('rowIndices')
            ? (json_['rowIndices'] as core.List)
                .map((value) => value as core.int)
                .toList()
            : null,
        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,
      );