Og1IconLauncher constructor

const Og1IconLauncher({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. double? iconWidth,
  5. double? iconHeight,
  6. String? icon,
  7. required String url,
  8. Icon? placeholderIcon,
  9. Text? placeholderText,
  10. dynamic onTap()?,
})

Implementation

const Og1IconLauncher({
  super.key,
  this.width,
  this.height,
  this.iconWidth,
  this.iconHeight,
  this.icon,
  required this.url,
  this.placeholderIcon,
  this.placeholderText,
  this.onTap,
});