copyWith method

InputBusinessStartPage copyWith({
  1. String? title,
  2. String? message,
  3. InputFile? sticker,
})

Implementation

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