HordeBoxColor constructor

const HordeBoxColor({
  1. Key? key,
  2. required Widget child,
  3. List<Map<String, Function>>? actionList,
  4. String? title,
  5. Color? color,
})

Implementation

const HordeBoxColor(
    {Key? key, required this.child, this.actionList, this.title, this.color})
    : super(
          key: key,
          child: child,
          actionList: actionList,
          title: title,
          color: color);