copyWith method

TMeUrl copyWith({
  1. String? url,
  2. TMeUrlType? type,
})

Implementation

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