flutter intl date and time format code example
Example 1: flutter datetime format
import 'package:intl/intl.dart';
DateTime now = DateTime.now();
String formattedDate = DateFormat('yyyy-MM-dd – kk:mm').format(now);
Example 2: date format flutter intl
dart pub add intl