loc2utc function

String? loc2utc(
  1. DateTime? d
)

Implementation

String? loc2utc(DateTime? d){
  return d?.toUtc().toIso8601String();
}