AdaptiveTappable constructor

const AdaptiveTappable({
  1. Key? key,
  2. required Widget child,
  3. required Map adaptiveMap,
})

Implementation

const AdaptiveTappable({
  Key? key,
  required this.child,
  required this.adaptiveMap,
}) : super(key: key);