Files
flutter_tank_web_app/lib/helper/helper.dart
2026-01-23 07:33:20 +01:00

11 lines
227 B
Dart

import 'package:intl/intl.dart';
/// Retrieves the current date in the format "yyyy-MM-dd".
///
/// @return [String] A formatted date.
String getCurrentDate(DateTime date) {
return DateFormat("yyyy-MM-dd").format(date);
}