ResponsiveRow<T> constructor

ResponsiveRow<T>({
  1. Key? key,
  2. required T children,
  3. Axis axis = Axis.vertical,
  4. ScrollController? controller,
  5. EdgeInsets? customInternalPadding,
  6. dynamic onClickCallable()?,
})

Implementation

ResponsiveRow({Key? key,
  required this.children,
  this.axis = Axis.vertical,
  this.controller,
  this.customInternalPadding,
  this.onClickCallable
}): super(key: key);