copyWith method

CellId copyWith({
  1. int? cid,
  2. int? lac,
})

Implementation

CellId copyWith({
  int? cid,
  int? lac,
}) {
  return CellId(
    cid: cid ?? this.cid,
    lac: lac ?? this.lac,
  );
}