copyWith method

SetLogTagVerbosityLevel copyWith({
  1. String? tag,
  2. int? newVerbosityLevel,
})

Implementation

SetLogTagVerbosityLevel copyWith({
  String? tag,
  int? newVerbosityLevel,
}) =>
    SetLogTagVerbosityLevel(
      tag: tag ?? this.tag,
      newVerbosityLevel: newVerbosityLevel ?? this.newVerbosityLevel,
    );