workaround property

BlurStyle get workaround

Returns the BlurStyle.outer, if not PlatformUtilsImpl.isIOS, or BlurStyle.normal otherwise.

Implementation

BlurStyle get workaround {
  if (PlatformUtils.isIOS) {
    return BlurStyle.normal;
  }

  return BlurStyle.outer;
}