copyWith method

LogTags copyWith({
  1. List<String>? tags,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

LogTags copyWith({
  List<String>? tags,
  dynamic extra,
  int? clientId,
}) =>
    LogTags(
      tags: tags ?? this.tags,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );