copyWith method

BluxInApp copyWith({
  1. String? id,
  2. String? url,
})

Implementation

BluxInApp copyWith({String? id, String? url}) {
  return BluxInApp(id: id ?? this.id, url: url ?? this.url);
}