webName property

String? get webName

Returns the Web SDK theme string ('DARK' or 'LIGHT') for this mode.

Implementation

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