copyWithWrapped method

LocationServices copyWithWrapped({
  1. Wrapped<LocationServiceAccess?>? access,
  2. 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));
}