logLevelEnd method
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");
}
}