RequestQuery constructor

RequestQuery({
  1. List<int>? data,
  2. String? path,
  3. Int64? height,
  4. bool? prove,
})

Implementation

factory RequestQuery({
  $core.List<$core.int>? data,
  $core.String? path,
  $fixnum.Int64? height,
  $core.bool? prove,
}) {
  final _result = create();
  if (data != null) {
    _result.data = data;
  }
  if (path != null) {
    _result.path = path;
  }
  if (height != null) {
    _result.height = height;
  }
  if (prove != null) {
    _result.prove = prove;
  }
  return _result;
}