YimListRow constructor

const YimListRow({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onPressed,
  4. Color? backgroundColor,
  5. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 16),
  6. Widget? dividingLine,
})

Implementation

const YimListRow({Key? key, required this.child, this.onPressed, this.backgroundColor, this.padding = const EdgeInsets.symmetric(horizontal: 16), this.dividingLine}) : super(key: key);