BitLabsOfferwall constructor

const BitLabsOfferwall({
  1. Key? key,
  2. void onReward(
    1. double
    )?,
  3. String adId = '',
  4. required String uid,
  5. required String token,
  6. Map<String, dynamic> tags = const {},
  7. bool debugMode = false,
  8. List<Color> color = const [Colors.blueAccent, Colors.blueAccent],
})

Implementation

const BitLabsOfferwall({
  Key? key,
  this.onReward,
  this.adId = '',
  required this.uid,
  required this.token,
  this.tags = const {},
  this.debugMode = false,
  this.color = const [Colors.blueAccent, Colors.blueAccent],
}) : super(key: key);