DeleteAuthenticatorError.unknownError constructor Null safety

DeleteAuthenticatorError.unknownError(
  1. {required String? description}
)

Constructor for DeleteAuthenticatorError with unknown error.

Params:

  • description: provides details about the error that occurred.

Implementation

factory DeleteAuthenticatorError.unknownError({
  required String? description,
}) {
  return DeleteAuthenticatorUnknownError(description: description);
}