sendHeight method

Future sendHeight()

Implementation

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