StatePicker constructor

const StatePicker({
  1. Key? key,
  2. Widget? child,
  3. Decoration? decoration,
  4. double? height,
  5. double? width,
  6. EdgeInsets? padding,
  7. Color? color,
})

Implementation

const StatePicker(
    {Key? key,
    this.child,
    this.decoration,
    this.height,
    this.width,
    this.padding,
    this.color})
    : super(key: key);