copyWith method

EnsTextRecord copyWith({
  1. String? email,
  2. String? url,
  3. String? avatar,
  4. String? description,
  5. String? notice,
  6. String? keywords,
  7. String? discord,
  8. String? github,
  9. String? reddit,
  10. String? twitter,
  11. String? telegram,
  12. String? ensDelegate,
})

Implementation

EnsTextRecord copyWith({
  String? email,
  String? url,
  String? avatar,
  String? description,
  String? notice,
  String? keywords,
  String? discord,
  String? github,
  String? reddit,
  String? twitter,
  String? telegram,
  String? ensDelegate,
}) {
  return EnsTextRecord(
    email: email ?? this.email,
    url: url ?? this.url,
    avatar: avatar ?? this.avatar,
    description: description ?? this.description,
    notice: notice ?? this.notice,
    keywords: keywords ?? this.keywords,
    discord: discord ?? this.discord,
    github: github ?? this.github,
    reddit: reddit ?? this.reddit,
    twitter: twitter ?? this.twitter,
    telegram: telegram ?? this.telegram,
    ensDelegate: ensDelegate ?? this.ensDelegate,
  );
}