JhToastWidget constructor

const JhToastWidget({
  1. Key? key,
  2. required String msg,
  3. Widget? image,
  4. required bool isLoading,
  5. required bool stopEvent,
  6. required _Orientation orientation,
})

Implementation

const JhToastWidget({
  Key? key,
  required this.msg,
  this.image,
  required this.isLoading,
  required this.stopEvent,
  required this.orientation,
}) : super(key: key);