createHeart method

Mesh createHeart({
  1. required int color,
})

Generates a 3D heart shape with the specified color.

Implementation

Mesh createHeart({required int color}) {
  throw UnimplementedError("createHeart() has not been implemented.");
}