USAMap constructor

const USAMap({
  1. Color? backgroundColor,
  2. Color? defaultColor,
  3. dynamic callback(
    1. String,
    2. TapUpDetails
    )?,
  4. USAColors? usaColors,
  5. Key? key,
})

Implementation

const USAMap(
    {this.backgroundColor,
    this.defaultColor,
    this.callback,
    this.usaColors,
    Key? key})
    : super(key: key);