SimpleWorldMap constructor

const SimpleWorldMap({
  1. Color? defaultCountryColor,
  2. Color? backgroundColor,
  3. SimpleWorldCountryColors? countryColors,
  4. dynamic callback(
    1. String,
    2. TapUpDetails
    )?,
  5. Key? key,
})

Implementation

const SimpleWorldMap(
    {this.defaultCountryColor,
    this.backgroundColor,
    this.countryColors,
    this.callback,
    Key? key})
    : super(key: key);