start method

Future<bool> start()

Implementation

Future<bool> start() async {
  // not in web
  if (FmlEngine.isWeb) return true;
  bool ok = await _post();
  return ok;
}