fbpTimeout method
Implementation
Future<T> fbpTimeout(int seconds, String function) {
return timeout(Duration(seconds: seconds), onTimeout: () {
throw FlutterBluePlusException(
ErrorPlatform.fbp, function, FbpErrorCode.timeout.index, "Timed out after ${seconds}s");
});
}