transaction method

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

Opens a new transactional session on the store.

Implementation

OpenSession transaction({String? profile}) {
  return OpenSession(store: handle, profile: profile, isTransaction: true);
}