arbicAutoUpdate static method

Future<void> arbicAutoUpdate()

Implementation

static Future<void> arbicAutoUpdate() async {
  InAppUpdate.checkForUpdate().then((info) {}).catchError((e) {
    if (kDebugMode) {
      print(e.toString());
    }
  }).then((value) => {
        InAppUpdate.startFlexibleUpdate(),
      });
}