copyWith method
Implementation
LiveLocation copyWith({
Location? location,
int? livePeriod,
int? heading,
int? proximityAlertRadius,
}) => LiveLocation(
location: location ?? this.location,
livePeriod: livePeriod ?? this.livePeriod,
heading: heading ?? this.heading,
proximityAlertRadius: proximityAlertRadius ?? this.proximityAlertRadius,
);