copyWith method
Implementation
GoogleMapClassPrediction copyWith({
List<PredictionGoogle>? predictions,
String? status,
}) =>
GoogleMapClassPrediction(
predictions: predictions ?? this.predictions,
status: status ?? this.status,
);