copyWith method

DiveReferencePanel copyWith({
  1. DiveSource? assignedSource,
  2. String? id,
})

Implementation

DiveReferencePanel copyWith({
  DiveSource? assignedSource,
  String? id,
}) {
  return DiveReferencePanel(
    assignedSource: assignedSource,
    id: id ?? this.id,
  );
}