We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 200b8cd commit bfc0351Copy full SHA for bfc0351
example/example.dart
@@ -2,8 +2,8 @@ import 'dart:core';
2
import 'package:email_validator/email_validator.dart';
3
4
void main() {
5
- const String email = "[email protected]";
6
- final bool isValid = EmailValidator.Validate(email);
+ const String email = '[email protected]';
+ final bool isValid = EmailValidator.validate(email);
7
8
print('Email is valid? ' + (isValid ? 'yes' : 'no'));
9
}
0 commit comments