SplashCompleted method

  1. @override
Future<void> SplashCompleted()
override

Implementation

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