CreateAccountWithKeysResponse constructor

CreateAccountWithKeysResponse({
  1. String? address,
  2. List<int>? aesPskKey,
  3. WhoIs? whoIs,
})

Implementation

factory CreateAccountWithKeysResponse({
  $core.String? address,
  $core.List<$core.int>? aesPskKey,
  $9.WhoIs? whoIs,
}) {
  final _result = create();
  if (address != null) {
    _result.address = address;
  }
  if (aesPskKey != null) {
    _result.aesPskKey = aesPskKey;
  }
  if (whoIs != null) {
    _result.whoIs = whoIs;
  }
  return _result;
}