OpsShell constructor

const OpsShell({
  1. Key? key,
  2. Widget child = const Center(child: Text("OpsShell")),
  3. double? height,
  4. double? width,
  5. double radius = 30,
  6. double elevation = 20,
  7. AlignmentGeometry? alignment,
  8. 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);