DeleteTableRowRequest.fromJson constructor

DeleteTableRowRequest.fromJson(
  1. Map json_
)

Implementation

DeleteTableRowRequest.fromJson(core.Map json_)
  : this(
      cellLocation:
          json_.containsKey('cellLocation')
              ? TableCellLocation.fromJson(
                json_['cellLocation'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      tableObjectId: json_['tableObjectId'] as core.String?,
    );