quiz method

Future quiz()

Implementation

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