session method

OpenSession session({
  1. String? profile,
})

Opens a new session on the store without starting a transaction.

Implementation

OpenSession session({String? profile}) {
  return OpenSession(store: handle, profile: profile, isTransaction: false);
}