```dart Future signUpWithPhoneVerification( String username, String password, ) async { await Amplify.Auth.signUp( username: username, password: password, options: SignUpOptions( userAttributes: { // ... if required AuthUserAttributeKey.email: 'test@example.com', AuthUserAttributeKey.phoneNumber: '+18885551234', }, ), ); } ```