strongLazyFlatMapMutable
Creates and returns new MutableProvider that lazily maps to the value of the MutableProvider returned by transform.
Contrary to strongFlatMapMutable, this does not disable lazy evaluation of this. Consequently, updates (for example in subscribers or observers) are only received after a flat-mapped provider has been resolved by evaluating the returned provider, applying transform.
transform should be a pure function.