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