ReorderableListEditor<T, C extends ValueNotifier<T?>> typedef

ReorderableListEditor<T, C extends ValueNotifier<T?>> = ReorderableCollectionEditor<List<T?>, C, ListEditingController<T, C>>

A widget to edit a list of T.

C is the type of the controller for each item.

Implementation

typedef ReorderableListEditor<
        T,
        C extends ValueNotifier<T?>
//
        >
    = ReorderableCollectionEditor<
        List<T?>,
        C,
        ListEditingController<T, C>
//
        >;