DeleteTableRowRequest.fromJson constructor

DeleteTableRowRequest.fromJson(
  1. Map json_
)

Implementation

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