webName property

String? webName

Implementation

String? get webName {
  switch (this) {
    case PspdfkitAppearanceMode.night:
      return 'DARK';
    case PspdfkitAppearanceMode.defaultMode:
    case PspdfkitAppearanceMode.sepia:
    case PspdfkitAppearanceMode.allCustomColors:
      return 'LIGHT';
    default:
      return null;
  }
}