copyWith method

GetLogTagVerbosityLevel copyWith({
  1. String? tag,
})

Implementation

GetLogTagVerbosityLevel copyWith({
  String? tag,
}) =>
    GetLogTagVerbosityLevel(
      tag: tag ?? this.tag,
    );