initial method

  1. @override
Future<bool?> initial()
override

Implementation

@override
Future<bool?> initial() async {
  final initialIsSuccess = await methodChannel.invokeMethod<bool?>('initial');
  return initialIsSuccess;
}