PinContainer constructor

const PinContainer({
  1. Widget? child,
  2. Key? key,
  3. Decoration? decoration,
  4. double? width = double.infinity,
  5. double? height = double.infinity,
  6. AlignmentGeometry? alignment = Alignment.center,
  7. Color? color,
})

Implementation

const PinContainer({
  this.child,
  Key? key,
  this.decoration,
  this.width = double.infinity,
  this.height = double.infinity,
  this.alignment = Alignment.center,
  this.color,
}) : super(key: key);