MoveableStackItem constructor

const MoveableStackItem({
  1. Key? key,
  2. required String url,
  3. required Map<String, dynamic> parametros,
  4. bool visivel = false,
  5. void onMaximize()?,
  6. Future<bool> onClose()?,
})

Implementation

const MoveableStackItem({
  super.key,
  required this.url,
  required this.parametros,
  this.visivel = false,
  this.onMaximize,
  this.onClose
});