mirror of
https://github.com/appwrite/sdk-for-flutter.git
synced 2026-04-07 19:27:41 +00:00
14 lines
206 B
Dart
14 lines
206 B
Dart
part of '../../enums.dart';
|
|
|
|
enum Theme {
|
|
light(value: 'light'),
|
|
dark(value: 'dark');
|
|
|
|
const Theme({
|
|
required this.value
|
|
});
|
|
|
|
final String value;
|
|
|
|
String toJson() => value;
|
|
} |