PinTheme constructor

const PinTheme({
  1. double? width,
  2. double? height,
  3. EdgeInsetsGeometry? margin,
  4. EdgeInsetsGeometry? padding,
  5. TextStyle? textStyle,
  6. BoxDecoration? decoration,
  7. BoxConstraints? constraints,
})

Theme of the individual pin items for following states: default, focused pin, submitted pin, following pin, disabled pin and error pin

Implementation

const PinTheme({
  this.width,
  this.height,
  this.margin,
  this.padding,
  this.textStyle,
  this.decoration,
  this.constraints,
});