UpdateTableRowPropertiesRequest.fromJson constructor

UpdateTableRowPropertiesRequest.fromJson(
  1. Map json_
)

Implementation

UpdateTableRowPropertiesRequest.fromJson(core.Map json_)
  : this(
      fields: json_['fields'] as core.String?,
      objectId: json_['objectId'] as core.String?,
      rowIndices: (json_['rowIndices'] as core.List?)
          ?.map((value) => value as core.int)
          .toList(),
      tableRowProperties: json_.containsKey('tableRowProperties')
          ? TableRowProperties.fromJson(
              json_['tableRowProperties']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );