RequestApplySnapshotChunk constructor

RequestApplySnapshotChunk({
  1. int? index,
  2. List<int>? chunk,
  3. String? sender,
})

Implementation

factory RequestApplySnapshotChunk({
  $core.int? index,
  $core.List<$core.int>? chunk,
  $core.String? sender,
}) {
  final _result = create();
  if (index != null) {
    _result.index = index;
  }
  if (chunk != null) {
    _result.chunk = chunk;
  }
  if (sender != null) {
    _result.sender = sender;
  }
  return _result;
}