copyWith method

GetMessageLinkInfo copyWith({
  1. String? url,
})

Implementation

GetMessageLinkInfo copyWith({
  String? url,
}) => GetMessageLinkInfo(
  url: url ?? this.url,
);