copyWith method
$FespListTileBuilderData
copyWith({
- Widget? title,
- Widget? leading,
- Widget? trailing,
- ShapeBorder? shape,
- void onTap()?,
Implementation
$FespListTileBuilderData copyWith({
Widget? title,
Widget? leading,
Widget? trailing,
ShapeBorder? shape,
void Function()? onTap,
}) {
return $FespListTileBuilderData(
title: title ?? this.title,
leading: leading ?? this.leading,
trailing: trailing ?? this.trailing,
shape: shape ?? this.shape,
onTap: onTap ?? this.onTap,
);
}