SendRequest constructor

SendRequest({
  1. String? email,
  2. bool? sendNotification,
  3. String? walletId,
  4. String? didUri,
  5. String? phoneNumber,
  6. String? documentJson,
})

Implementation

factory SendRequest({
  $core.String? email,
  $core.bool? sendNotification,
  $core.String? walletId,
  $core.String? didUri,
  $core.String? phoneNumber,
  $core.String? documentJson,
}) {
  final $result = create();
  if (email != null) {
    $result.email = email;
  }
  if (sendNotification != null) {
    $result.sendNotification = sendNotification;
  }
  if (walletId != null) {
    $result.walletId = walletId;
  }
  if (didUri != null) {
    $result.didUri = didUri;
  }
  if (phoneNumber != null) {
    $result.phoneNumber = phoneNumber;
  }
  if (documentJson != null) {
    $result.documentJson = documentJson;
  }
  return $result;
}