DropRowRangeRequest.fromJson constructor
      
      DropRowRangeRequest.fromJson(
    
    
- 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,
      );