FloodFillWidget constructor

const FloodFillWidget({
  1. Key? key,
  2. required Color newColor,
  3. required ValueChanged<Image> onImageChanged,
  4. required String imageUrl,
  5. Widget? loadingWidget,
  6. double? width,
  7. double? height,
})

Implementation

const FloodFillWidget(
    {super.key,
    required this.newColor,
    required this.onImageChanged,
    required this.imageUrl,
    this.loadingWidget,
    this.width,
    this.height});