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