copyWith method

  1. @override
InlineKeyboardButtonTypeUrl copyWith({
  1. String? url,
})
override

Implementation

@override
InlineKeyboardButtonTypeUrl copyWith({
  String? url,
}) =>
    InlineKeyboardButtonTypeUrl(
      url: url ?? this.url,
    );