CrudBase<CrudStore extends StoreCrudBase> constructor

const CrudBase<CrudStore extends StoreCrudBase>({
  1. Key? key,
  2. required String title,
  3. List<Tuples>? tuples,
  4. List<IInput>? inputs,
  5. double height = 400,
  6. double width = 400,
})

Implementation

const CrudBase(
    {Key? key,
    required this.title,
    this.tuples,
    this.inputs,
    this.height = 400,
    this.width = 400})
    : assert(tuples != null && inputs == null ||
          inputs != null && tuples == null),
      super(key: key);