copyWith method
Implementation
ModelFieldEntity copyWith({
ID? id,
String? description,
Variable? variable,
String? jsonKey,
}) =>
ModelFieldEntity(
id: id ?? this.id,
description: description ?? this.description,
variable: variable ?? this.variable,
jsonKey: jsonKey ?? this.jsonKey,
);