GetAddressInfoResponse constructor

GetAddressInfoResponse({
  1. String? address,
  2. String? label,
  3. String? publicKey,
  4. String? path,
  5. String? walletName,
})

Implementation

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