IntrinsicCell constructor

IntrinsicCell({
  1. Key? key,
  2. int snap = 4,
  3. required Widget child,
  4. bool inheritExtent = true,
  5. int offset = 0,
})

Implementation

IntrinsicCell({
  Key? key,
  int snap = 4,
  required Widget child,
  bool inheritExtent = true,
  int offset = 0,
}) : super._(
        key: key,
        child: child,
        snap: snap,
        offset: offset,
        inheritMainAxisExtent: inheritExtent,
      );