toPlatformValue property

dynamic get toPlatformValue

Implementation

dynamic get toPlatformValue {
  if (defaultTargetPlatform == TargetPlatform.iOS) {
    switch (this) {
      case CleverPushVisibility.visible:
        return true;
      case CleverPushVisibility.gone:
        return false;
    }
  }
  return toNativeValue;
}