SplashRF constructor

SplashRF({
  1. String? title,
  2. String? subTitle,
  3. Color? color,
  4. String? font,
  5. Color? titleColor,
  6. Color? subTitleColor,
  7. Color? rippleColor,
  8. String? rippleImagePath,
  9. double? rippleImageSize,
  10. String? orgLogoPath,
  11. int? duration = 5,
})

Implementation

SplashRF({
  this.title,
  this.subTitle,
  this.color,
  this.font,
  this.titleColor,
  this.subTitleColor,
  this.rippleColor,
  this.rippleImagePath,
  this.rippleImageSize,
  this.orgLogoPath,
  this.duration = 5,
});