copyWith method

OrbAvatar copyWith({
  1. String? type,
  2. String? color1,
  3. String? color2,
})

Implementation

OrbAvatar copyWith({String? type, String? color1, String? color2}) {
  return OrbAvatar(
      type: type ?? this.type,
      color1: color1 ?? this.color1,
      color2: color2 ?? this.color2);
}