Line data Source code
1 : import 'package:super_enum/super_enum.dart'; 2 : part 'orientation.g.dart'; 3 : 4 : @superEnum 5 1 : enum _Orientation { 6 : @object 7 1 : ToDefault, 8 : @object 9 1 : Horizontally, 10 : @object 11 1 : HorizontallyAndVertically, 12 : @object 13 1 : Vertically, 14 : @object 15 1 : HorizontallyAndRotate90DegreeLeft, 16 : @object 17 1 : Degrees90TowardsRight, 18 : @object 19 1 : HorizontallyAndRotate90DegreesRight, 20 : @object 21 1 : Rotate90DegreesLeft, 22 : }