OneFloating constructor

const OneFloating({
  1. Key? key,
  2. dynamic icon,
  3. VoidCallback? onPressed,
  4. bool isShow = true,
  5. String? heroTag,
  6. bool isLoading = false,
  7. bool isGray = false,
})

Implementation

const OneFloating({
  super.key,
  this.icon,
  this.onPressed,
  this.isShow = true,
  this.heroTag,
  this.isLoading = false,
  this.isGray = false,
});