copyWith method

JqlQueryField copyWith({
  1. String? encodedName,
  2. String? name,
  3. 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,
  );
}