merge method

Merges one AvatarThemeData with the another

Implementation

AvatarThemeData merge(AvatarThemeData? other) {
  if (other == null) return this;
  return copyWith(
    constraints: other._constraints,
    borderRadius: other._borderRadius,
  );
}