logLevelEnd method

  1. @override
Future<void> logLevelEnd(
  1. int id,
  2. String name,
  3. bool isSuccess
)
override

Implementation

@override
Future<void> logLevelEnd(int id, String name, bool isSuccess) async {
  try {
    await _logCommonChannel.invokeMethod(
        SuperfineSdkChannelMethods.logLevelEnd,
        {'id': id, 'name': name, 'isSuccess': isSuccess});
  } catch (e) {
    print("Error logging level end: $e");
  }
}