feat: transaction
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import 'package:intl/intl.dart';
|
||||
|
||||
class StringUtils {
|
||||
static bool emailValidation(String email) {
|
||||
return RegExp(
|
||||
@@ -13,4 +15,12 @@ class StringUtils {
|
||||
return RegExp(r'^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*?[\W_])(?=.{8,})')
|
||||
.hasMatch(password);
|
||||
}
|
||||
|
||||
static String formatTime(DateTime? dateTime) {
|
||||
if (dateTime != null) {
|
||||
DateFormat formatter = DateFormat('HH:mm:ss');
|
||||
return formatter.format(dateTime);
|
||||
}
|
||||
return '--:--:--';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user