M4ePermissionForm constructor
Implementation
const M4ePermissionForm({
@required M4eUniqueId subId,
@required M4eUniqueId objId,
@required M4eAccessPermissionType type,
@required List<M4eAccessPermissionSet> encoding,
}) :
// assert(subId != null, 'M4ePermissionForm [subId] should not be null'),
// assert(objId != null, 'M4ePermissionForm [objId] should not be null'),
// assert(type != null, 'M4ePermissionForm [type] should not be null'),
// assert(encoding != null,
// 'M4ePermissionForm [encoding] should not be null'),
this.subId = subId,
this.objId = objId,
this.type = type,
this.encoding = encoding;