call method

  1. @override
Log call({
  1. Header? header,
  2. int? level,
  3. String? name,
  4. String? msg,
  5. String? file,
  6. String? function,
  7. int? line,
  8. List<String>? topics,
})

Implementation

@override
Log call({
  Header? header,
  int? level,
  String? name,
  String? msg,
  String? file,
  String? function,
  int? line,
  List<String>? topics,
}) => Log(
header: header,
level: level,
name: name,
msg: msg,
file: file,
function: function,
line: line,
topics: topics,
);