OpsShell constructor
const
OpsShell({
- Key? key,
- Widget child = const Center(child: Text("OpsShell")),
- double? height,
- double? width,
- double radius = 30,
- double elevation = 20,
- AlignmentGeometry? alignment,
- Decoration? decoration,
Implementation
const OpsShell({
Key? key,
this.child = const Center(child: Text("OpsShell")),
this.height,
this.width,
this.radius = 30,
this.elevation = 20,
this.alignment,
this.decoration,
}) : super(key: key);