saveAsIncienso method

Incienso? saveAsIncienso(
  1. String name
)

Stop recording and build a shareable Incienso from the session. Returns null if session was too short (< 30s or < 5 keyframes).

Implementation

Incienso? saveAsIncienso(String name) {
  return inciensoRecorder.stopAndBuild(
    name: name,
    creatorId: profile?.id,
  );
}