PlatformListTile constructor

PlatformListTile({
  1. double? pressOpacity,
  2. FutureOr onHover(
    1. BuildContext
    )?,
  3. double? pressScale,
  4. EdgeInsets? padding,
  5. EdgeInsets? margin,
  6. BorderRadius? borderRadius,
  7. Color? color,
  8. double? height,
  9. double? width,
  10. bool? useShadow,
  11. double? minWidth,
  12. PlatformCardTheme? theme,
  13. double? minHeight,
  14. FutureOr onTap(
    1. BuildContext
    )?,
  15. bool? shouldClip,
  16. FutureOr onLongPress(
    1. BuildContext
    )?,
  17. List<BoxShadow>? shadow,
  18. Key? key,
  19. Widget? leading,
  20. Widget? title,
  21. Widget? bottom,
  22. Widget? subtitle,
  23. Widget? trailing,
})

Implementation

PlatformListTile({
  double? pressOpacity,
  FutureOr<dynamic> Function(BuildContext)? onHover,
  double? pressScale,
  EdgeInsets? padding,
  EdgeInsets? margin,
  BorderRadius? borderRadius,
  Color? color,
  double? height,
  double? width,
  bool? useShadow,
  double? minWidth,
  PlatformCardTheme? theme,
  double? minHeight,
  FutureOr<dynamic> Function(BuildContext)? onTap,
  bool? shouldClip,
  FutureOr<dynamic> Function(BuildContext)? onLongPress,
  List<BoxShadow>? shadow,
  Key? key,
  Widget? leading,
  Widget? title,
  Widget? bottom,
  Widget? subtitle,
  Widget? trailing,
}) : super(
          PlatformCardArgs(
            pressOpacity: pressOpacity,
            onHover: onHover,
            pressScale: pressScale,
            padding: padding,
            margin: margin,
            borderRadius: borderRadius,
            color: color,
            height: height,
            width: width,
            useShadow: useShadow,
            minWidth: minWidth,
            theme: theme,
            minHeight: minHeight,
            onTap: onTap,
            shouldClip: shouldClip,
            onLongPress: onLongPress,
            shadow: shadow,
          ),
          key: key,
          leading: leading,
          title: title,
          bottom: bottom,
          subtitle: subtitle,
          trailing: trailing);