DeleteTableColumnRequest.fromJson constructor

DeleteTableColumnRequest.fromJson(
  1. Map json_
)

Implementation

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