GasOffered constructor

GasOffered({
  1. Int64? gasProvided,
  2. Int64? gasPrice,
})

Implementation

factory GasOffered({
  $fixnum.Int64? gasProvided,
  $fixnum.Int64? gasPrice,
}) {
  final _result = create();
  if (gasProvided != null) {
    _result.gasProvided = gasProvided;
  }
  if (gasPrice != null) {
    _result.gasPrice = gasPrice;
  }
  return _result;
}