UAdminActionHandlers<T> constructor

UAdminActionHandlers<T>({
  1. void onEdit(
    1. T item
    )?,
  2. void onDelete(
    1. T item
    )?,
  3. void onDetail(
    1. T item
    )?,
  4. Map<String, void Function(T item)>? extras,
})

Implementation

UAdminActionHandlers({this.onEdit, this.onDelete, this.onDetail, this.extras});