LoginSuccess method

  1. @override
Future<void> LoginSuccess(
  1. String source
)
override

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}");
  }
}