nativeEnumString property

String get nativeEnumString

Convert value to exolve voice sdk string

Implementation

String get nativeEnumString {
  switch (this) {
    case ApplicationState.foreground:
      return 'FOREGROUND';
    case ApplicationState.background:
      return 'BACKGROUND';
  }
}