RequestLoadSnapshotChunk constructor

RequestLoadSnapshotChunk({
  1. Int64? height,
  2. int? format,
  3. int? chunk,
})

Implementation

factory RequestLoadSnapshotChunk({
  $fixnum.Int64? height,
  $core.int? format,
  $core.int? chunk,
}) {
  final _result = create();
  if (height != null) {
    _result.height = height;
  }
  if (format != null) {
    _result.format = format;
  }
  if (chunk != null) {
    _result.chunk = chunk;
  }
  return _result;
}