log method

Future<void> log(
  1. int level,
  2. String tag,
  3. String message,
  4. bool useIsLoggable,
)

Invoke logging function using method channel

Implementation

Future<void> log(int level, String tag, String message, bool useIsLoggable) {
  throw UnimplementedError('log() has not been implemented.');
}