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