RouteRow constructor

const RouteRow({
  1. Key? key,
  2. Widget? avatar,
  3. required Widget title,
  4. Widget? subtitle,
  5. Widget? trailing,
  6. required String route,
})

Implementation

const RouteRow(
    {Key? key,
    this.avatar,
    required this.title,
    this.subtitle,
    this.trailing,
    required this.route})
    : super(key: key);