copyWith method
Implementation
TMeUrl copyWith({
  String? url,
  TMeUrlType? type,
}) => TMeUrl(
  url: url ?? this.url,
  type: type ?? this.type,
);TMeUrl copyWith({
  String? url,
  TMeUrlType? type,
}) => TMeUrl(
  url: url ?? this.url,
  type: type ?? this.type,
);