CryCascade constructor

const CryCascade({
  1. Key? key,
  2. String? title,
  3. required List<CascadeModel> data,
})

Implementation

const CryCascade({
  Key? key,
  this.title,
  required this.data,
}) : super(key: key);