copyWith method

URLAvatar copyWith({
  1. String? type,
  2. String? customUrl,
})

Implementation

URLAvatar copyWith({String? type, String? customUrl}) {
  return URLAvatar(
      type: type ?? this.type, customUrl: customUrl ?? this.customUrl);
}