copyWith method
Implementation
LMFeedAppBar copyWith({
Widget? leading,
List<Widget>? trailing,
Widget? title,
Function? backButtonCallback,
LMFeedAppBarStyle? style,
}) {
return LMFeedAppBar(
leading: leading ?? this.leading,
trailing: trailing ?? this.trailing,
title: title ?? this.title,
backButtonCallback: backButtonCallback ?? this.backButtonCallback,
style: style ?? this.style,
);
}