InvitationRedemptionResult constructor

InvitationRedemptionResult({
  1. bool? success,
  2. AccountId? accountId,
  3. StringValue? error,
})

Implementation

factory InvitationRedemptionResult({
  $core.bool? success,
  $0.AccountId? accountId,
  $2.StringValue? error,
}) {
  final result = create();
  if (success != null) result.success = success;
  if (accountId != null) result.accountId = accountId;
  if (error != null) result.error = error;
  return result;
}