copyWith method
Implementation
BusinessStartPage copyWith({
String? title,
String? message,
Sticker? sticker,
}) => BusinessStartPage(
title: title ?? this.title,
message: message ?? this.message,
sticker: sticker ?? this.sticker,
);
BusinessStartPage copyWith({
String? title,
String? message,
Sticker? sticker,
}) => BusinessStartPage(
title: title ?? this.title,
message: message ?? this.message,
sticker: sticker ?? this.sticker,
);