RemoveWebAuthNAuthenticatorRequest constructor
RemoveWebAuthNAuthenticatorRequest({
- Instance? instance,
- Organization? organization,
- String? id,
- String? webAuthNId,
Implementation
factory RemoveWebAuthNAuthenticatorRequest({
$1.Instance? instance,
$1.Organization? organization,
$core.String? id,
$core.String? webAuthNId,
}) {
final result = create();
if (instance != null) result.instance = instance;
if (organization != null) result.organization = organization;
if (id != null) result.id = id;
if (webAuthNId != null) result.webAuthNId = webAuthNId;
return result;
}