handleEvent method
- Map arguments
Method called when event is called from the native side.
Should not be called by the user.
Implementation
@override
void handleEvent(Map<dynamic, dynamic> arguments) {
String eventSubtype = arguments['event_subtype'];
switch (eventSubtype) {
case 'onConnectFinished':
{}
break;
case 'onNetworkFailed':
{}
break;
case 'onMobileCountryCodeChanged':
{}
break;
}
}