copyWithWrapped method
- Wrapped<
LocationServiceAccess?> ? access, - Wrapped<
LocationServiceStatus?> ? status,
Implementation
LocationServices copyWithWrapped(
{Wrapped<enums.LocationServiceAccess?>? access,
Wrapped<enums.LocationServiceStatus?>? status}) {
return LocationServices(
access: (access != null ? access.value : this.access),
status: (status != null ? status.value : this.status));
}