toMgrs method
Converts UTM coordinates of this to the MGRS grid reference.
May throw a FormatException if conversion fails.
Examples:
final utmCoord = Utm(31, 'N', 448251, 5411932);
final mgrsRef = utmCoord.toMgrs(); // 31U DQ 48251 11932
See Mgrs.fromUtm for more details.
Implementation
Mgrs toMgrs() => Mgrs.fromUtm(this);