copyWith method

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

Implementation

ImageAvatar copyWith({String? type, String? url}) {
  return ImageAvatar(type: type ?? this.type, url: url ?? this.url);
}