log method

void log(
  1. String log
)

记录Flutter日志到本地

Implementation

void log(String log) async {
  return _api.log(log);
}