CubeType constructor

CubeType({
  1. int? idCube,
  2. required String cubeName,
  3. int? idUser,
})

Constructor para inicializar un tipo de cubo.

Implementation

CubeType({this.idCube, required this.cubeName, this.idUser});