TF-2667 Validate email in recipient form before send email

This commit is contained in:
dab246
2024-03-19 00:54:21 +07:00
committed by Dat H. Pham
parent c013e0306c
commit dbbbf7d856
8 changed files with 597 additions and 4 deletions
@@ -0,0 +1,13 @@
import 'package:equatable/equatable.dart';
class AddressException with EquatableMixin implements Exception {
final String message;
AddressException(this.message);
@override
String toString() => message;
@override
List<Object> get props => [message];
}