CountryCodeWidget constructor

CountryCodeWidget({
  1. Key? key,
  2. double height = 0,
  3. double width = 0,
  4. double borderRadius = 0,
  5. Color color = Colors.transparent,
  6. Color borderColor = Colors.transparent,
  7. BorderStyle borderStyle = BorderStyle.solid,
  8. double borderWidth = 0,
  9. TextStyle? textStyle = const TextStyle(fontSize: 18),
})

Implementation

CountryCodeWidget({
  Key? key,
  this.height = 0,
  this.width = 0,
  this.borderRadius = 0,
  this.color = Colors.transparent,
  this.borderColor = Colors.transparent,
  this.borderStyle = BorderStyle.solid,
  this.borderWidth = 0,
  this.textStyle = const TextStyle(
    fontSize: 18,
  ),
}) : super(key: key);