JidoujishoListTile constructor

const JidoujishoListTile(
  1. {required String title,
  2. required String subtitle,
  3. required IconData icon,
  4. required bool selected,
  5. Color? foregroundColor,
  6. dynamic onTap(
      )?,
    1. Widget? trailing,
    2. Key? key}
    )

    Initialise this widget.

    Implementation

    const JidoujishoListTile({
      required this.title,
      required this.subtitle,
      required this.icon,
      required this.selected,
      this.foregroundColor,
      this.onTap,
      this.trailing,
      super.key,
    });