setTimeout method

  1. @override
Future<int> setTimeout(
  1. int timeout
)
override

Implementation

@override
Future<int> setTimeout(int timeout) async {
  final ret = await methodChannel.invokeMethod(
      PluginFunctionInterfaceConstants.FPS_SET_TIMEOUT, timeout);
  return ret;
}