MenuListSectionTitle constructor

const MenuListSectionTitle({
  1. Key? key,
  2. required String title,
  3. EdgeInsetsGeometry padding = const EdgeInsets.only(top: 8.0, bottom: 8.0, left: 45.0, right: 15.0),
  4. TextStyle textStyle = const TextStyle(),
})

Implementation

const MenuListSectionTitle({
  Key? key,
  required this.title,
  this.padding = const EdgeInsets.only(
    top: 8.0,
    bottom: 8.0,
    left: 45.0,
    right: 15.0,
  ),
  this.textStyle = const TextStyle(),
}) : super(key: key);