adtime method

Future adtime()

Implementation

} Future adtime() async {
  try {
    return 2;
  } on PlatformException catch (e) {
    if (kDebugMode) {
      print("Failed to get battery level: '${e.message}'.");
    }
    return 2;
  }
}