showLogger static method

void showLogger(
  1. BuildContext context
)

Implementation

static void showLogger(BuildContext context) {
  Navigator.of(context).push(MaterialPageRoute(builder: (context) {
    return const _LogConsole();
  }));
}