logTermination static method

Future logTermination()

Implementation

static Future logTermination() async {
  try {
    await _channel.invokeMethod('logTermination');
  } on PlatformException catch (e) {
    print(e);
  }
}