CardOpcoes constructor

const CardOpcoes({
  1. Key? key,
  2. required Widget child,
  3. required int id,
  4. bool editar = true,
  5. bool excluir = true,
})

Implementation

const CardOpcoes(
    {Key? key,
    required this.child,
    required this.id,
    this.editar = true,
    this.excluir = true})
    : super(key: key);