LoginSuccess method
Implementation
@override
Future<void> LoginSuccess(String source) async {
try {
await methodChannel.invokeMethod('LoginSuccess', {'source': source});
} on PlatformException catch (e) {
print("Failed to call LoginSuccess: ${e.message}");
}
}