add3 method

Color add3(
  1. Color other
)

Implementation

Color add3(Color other) {
  final result = SpineBindings.bindings.spine_color_add_3(_ptr, other.nativePtr.cast());
  return Color.fromPointer(result);
}