ViewerMetadata_RowError constructor

ViewerMetadata_RowError({
  1. String? partition,
  2. String? row,
  3. int? follows,
  4. List<int>? data,
  5. String? error,
})

Implementation

factory ViewerMetadata_RowError({
  $core.String? partition,
  $core.String? row,
  $core.int? follows,
  $core.List<$core.int>? data,
  $core.String? error,
}) {
  final _result = create();
  if (partition != null) {
    _result.partition = partition;
  }
  if (row != null) {
    _result.row = row;
  }
  if (follows != null) {
    _result.follows = follows;
  }
  if (data != null) {
    _result.data = data;
  }
  if (error != null) {
    _result.error = error;
  }
  return _result;
}