exit static method

Future<void> exit({
  1. bool? animated,
})

直接退出程序

参考文档

Implementation

static Future<void> exit({bool? animated}) async {
  await SystemChannels.platform
      .invokeMethod<void>('SystemNavigator.pop', animated);
}