copyWith method
Copy this instance with different nullable value.
Implementation
CustomType copyWith({
bool? nullable,
List<TypeMember>? members,
}) =>
CustomType(
className: className,
members: members ?? this.members,
nullable: nullable ?? this.nullable,
);