DrawerAction constructor

DrawerAction({
  1. String? title,
  2. DrawerActionType actionType = DrawerActionType.open,
  3. bool isEndDrawer = false,
  4. bool? isAwaited,
})

Implementation

DrawerAction({
  super.title,
  this.actionType = DrawerActionType.open,
  this.isEndDrawer = false,
  super.isAwaited,
}) : super(schemaType: schemaName);