TF-2667 Validate email in recipient form before send email
This commit is contained in:
@@ -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];
|
||||
}
|
||||
Reference in New Issue
Block a user