hide static method

Future<void> hide()

Implementation

static Future<void> hide() async {
  if (c != null) {
    Navigator.pop(c!);
  }
}