Files
elcaribe/desarrollo2/source_code/lib/custom/customDateTimes.dart
2023-08-23 17:33:44 -04:00

11 lines
279 B
Dart

import 'package:intl/intl.dart';
class CustomDateTime{
static String getDate = DateFormat('dMMMM,y').format(DateTime.now());
static String getDayName = DateFormat('EEEE').format(DateTime.now());
static String getLast7Date = DateFormat('EEEE').format(DateTime.now());
}