Skip to content

Commit bfc0351

Browse files
committed
Update example for new change
1 parent 200b8cd commit bfc0351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/example.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import 'dart:core';
22
import 'package:email_validator/email_validator.dart';
33

44
void main() {
5-
const String email = "[email protected]";
6-
final bool isValid = EmailValidator.Validate(email);
5+
const String email = '[email protected]';
6+
final bool isValid = EmailValidator.validate(email);
77

88
print('Email is valid? ' + (isValid ? 'yes' : 'no'));
99
}

0 commit comments

Comments
 (0)