ProtoBurntCoins constructor

ProtoBurntCoins({
  1. List<int>? address,
  2. String? key,
  3. List<int>? amount,
})

Implementation

factory ProtoBurntCoins({
  $core.List<$core.int>? address,
  $core.String? key,
  $core.List<$core.int>? amount,
}) {
  final _result = create();
  if (address != null) {
    _result.address = address;
  }
  if (key != null) {
    _result.key = key;
  }
  if (amount != null) {
    _result.amount = amount;
  }
  return _result;
}