copyWith method

ChatMedia copyWith({
  1. String? url,
  2. MediaType? mediaType,
})

Implementation

ChatMedia copyWith({
  String? url,
  MediaType? mediaType,
}) {
  return ChatMedia(
    url: url ?? this.url,
    mediaType: mediaType ?? this.mediaType,
  );
}