UpdateTableCellStyleRequest.fromJson constructor

UpdateTableCellStyleRequest.fromJson(
  1. Map json_
)

Implementation

UpdateTableCellStyleRequest.fromJson(core.Map json_)
  : this(
      fields: json_['fields'] as core.String?,
      tableCellStyle:
          json_.containsKey('tableCellStyle')
              ? TableCellStyle.fromJson(
                json_['tableCellStyle']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      tableRange:
          json_.containsKey('tableRange')
              ? TableRange.fromJson(
                json_['tableRange'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      tableStartLocation:
          json_.containsKey('tableStartLocation')
              ? Location.fromJson(
                json_['tableStartLocation']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );