copyWith method
Implementation
OperatorDetail copyWith({
String? base,
List<String>? provinces,
String? model,
SimCardType? type,
Operator? operator,
}) =>
OperatorDetail(
base: base ?? this.base,
provinces: provinces ?? this.provinces,
model: model ?? this.model,
type: type ?? this.type,
operator: operator ?? this.operator,
);