copyWith method
Implementation
AxelorVersionModel copyWith({int? id, int? version}) => AxelorVersionModel(
version: version ?? this.version,
id: id ?? this.id,
);
AxelorVersionModel copyWith({int? id, int? version}) => AxelorVersionModel(
version: version ?? this.version,
id: id ?? this.id,
);