copyWith method

InputBusinessChatLink copyWith({
  1. FormattedText? text,
  2. String? title,
})

Implementation

InputBusinessChatLink copyWith({FormattedText? text, String? title}) =>
    InputBusinessChatLink(
      text: text ?? this.text,
      title: title ?? this.title,
    );