copyWith method
Copies this instance with the given fields replaced with the new values.
Implementation
ObjInfo copyWith({
String? name,
String? qualname,
String? module,
}) =>
ObjInfo._(
name: name ?? this.name,
qualname: qualname ?? this.qualname,
module: module ?? this.module,
);