formatDateTime static method

String formatDateTime(
  1. DateTime dateTime
)

Implementation

static String formatDateTime(DateTime dateTime) {
  return '${dateTime.toUtc().toIso8601String().replaceAll('-', '').replaceAll(':', '').split('.').first}Z';
}