copyWith method
Implementation
StatusModel copyWith({
ContextModel? context,
String? value,
num? total_paid,
}) {
return StatusModel(
context: context ?? this.context,
value: value ?? this.value,
total_paid: total_paid ?? this.total_paid,
);
}