copyWith method
Implementation
SnackBarInfo copyWith({
String? message,
SnackBarType? type,
bool? showSnackBar,
}) {
return SnackBarInfo(
message: message ?? this.message,
type: type ?? this.type,
showSnackBar: showSnackBar ?? this.showSnackBar,
);
}