SetLabelRequest constructor

SetLabelRequest({
  1. String? walletName,
  2. String? password,
  3. String? address,
  4. String? label,
})

Implementation

factory SetLabelRequest({
  $core.String? walletName,
  $core.String? password,
  $core.String? address,
  $core.String? label,
}) {
  final _result = create();
  if (walletName != null) {
    _result.walletName = walletName;
  }
  if (password != null) {
    _result.password = password;
  }
  if (address != null) {
    _result.address = address;
  }
  if (label != null) {
    _result.label = label;
  }
  return _result;
}