d static method

Future<void> d({
  1. String? tag,
  2. String? content,
})

Implementation

static Future<void> d({
  String? tag,
  String? content,
}) async {
  Map<String, Object?> map = {
    "tag": tag,
    "content": content,
  };
  _channel.invokeMethod("logd", map);
}