copyWith method

BusinessStartPage copyWith({
  1. String? title,
  2. String? message,
  3. Sticker? sticker,
})

Implementation

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