CountryBorder constructor

const CountryBorder({
  1. required Color color,
  2. double width = 1,
})

Implementation

const CountryBorder({
  required this.color,
  this.width = 1,
});