getUtmSource method
void
getUtmSource()
Implementation
void getUtmSource() async{
try {
final String result = await instance.invokeMethod('getUtmSource');
utmSource = result;
} on PlatformException catch (e) {
utmSource = "Failed to Invoke: getUtmSource'${e.message}'.";
}
}