copyWith method
JqlQueryField
copyWith({
- String? encodedName,
- String? name,
- List<
JqlQueryFieldEntityProperty> ? property,
Implementation
JqlQueryField copyWith(
{String? encodedName,
String? name,
List<JqlQueryFieldEntityProperty>? property}) {
return JqlQueryField(
encodedName: encodedName ?? this.encodedName,
name: name ?? this.name,
property: property ?? this.property,
);
}