stringValue property

String get stringValue

Converts the enum to a string representation for platform communication

Implementation

String get stringValue {
  switch (this) {
    case IOSAnimationStyle.none:
      return 'none';
    case IOSAnimationStyle.bottomToTop:
      return 'bottomToTop';
    case IOSAnimationStyle.rightToLeft:
      return 'rightToLeft';
  }
}