merge method

Merges one StreamAvatarThemeData with the another

Implementation

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