copyWith method

Log copyWith({
  1. String? message,
  2. int? code,
  3. bool? canDebugPrint,
})

Implementation

Log copyWith({
  String? message,
  int? code,
  bool? canDebugPrint,
}) {
  return Log(message ?? this.message, code: code ?? this.code);
}