FastRewardedAdBuilder constructor

const FastRewardedAdBuilder({
  1. Key? key,
  2. required BlocBuilder<FastRewardedAdBlocState> builder,
  3. bool? onlyWhenLoading,
})

Implementation

const FastRewardedAdBuilder({
  super.key,
  required this.builder,
  bool? onlyWhenLoading,
}) : onlyWhenLoading = onlyWhenLoading ?? false;