Access.self constructor

const Access.self({
  1. required String ownerParam,
})

Require the current user to match the method argument named ownerParam.

Implementation

const Access.self({required String ownerParam})
    : this._('self', ownerParam: ownerParam);