ButtonShapeWidget constructor

const ButtonShapeWidget({
  1. Key? key,
  2. required bool isDownloading,
  3. required bool isDownloaded,
  4. required bool isFetching,
  5. required Duration transitionDuration,
  6. required double width,
})

Implementation

const ButtonShapeWidget({
  Key? key,
  required this.isDownloading,
  required this.isDownloaded,
  required this.isFetching,
  required this.transitionDuration,
  required this.width,
}) : super(key: key);