format method

String? format(
  1. String? gst
)

format the gst.

Basically it will uppercase the number.

Implementation

String? format(String? gst) {
  return gst?.toUpperCase();
}