DropRowRangeRequest.fromJson constructor

DropRowRangeRequest.fromJson(
  1. Map json_
)

Implementation

DropRowRangeRequest.fromJson(core.Map json_)
    : this(
        deleteAllDataFromTable: json_.containsKey('deleteAllDataFromTable')
            ? json_['deleteAllDataFromTable'] as core.bool
            : null,
        rowKeyPrefix: json_.containsKey('rowKeyPrefix')
            ? json_['rowKeyPrefix'] as core.String
            : null,
      );