setAttemptInstantSync method

  1. @override
Future<void> setAttemptInstantSync(
  1. bool isEnable
)
override

Implementation

@override
Future<void> setAttemptInstantSync(bool isEnable) async{
  try {
    return methodChannel.invokeMethod<void>("setAttemptInstantSync", <String,bool>{"attemptInstantSync":isEnable});
  } on PlatformException catch (e, s) {
    print(s);
    return ;
  }
}