TF-2667 Show sending message dialog when click send button
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
|
||||
import 'package:core/presentation/extensions/string_extension.dart';
|
||||
import 'package:jmap_dart_client/jmap/core/user_name.dart';
|
||||
import 'package:jmap_dart_client/jmap/mail/email/email_address.dart';
|
||||
|
||||
extension UsernameExtension on UserName {
|
||||
String get firstCharacter => value.firstLetterToUpperCase.toUpperCase();
|
||||
String get firstCharacter => value.isNotEmpty ? value[0].toUpperCase() : '';
|
||||
|
||||
EmailAddress toEmailAddress() => EmailAddress(null, value);
|
||||
}
|
||||
Reference in New Issue
Block a user