copyWith method

$FespListTileBuilderData copyWith({
  1. Widget? title,
  2. Widget? leading,
  3. Widget? trailing,
  4. ShapeBorder? shape,
  5. 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,
  );
}