FabSocket constructor
Creates a FabSocket widget.
The child
parameter is required and specifies the FAB component to position.
Example:
FabSocket(
child: Fab(
child: Icon(Icons.add),
onPressed: () => print("FAB pressed"),
),
)
Implementation
const FabSocket({super.key, required this.child});