isOwner static method
Implementation
static bool isOwner(BuildContext context, AppModel app) {
var theState = AccessBloc.getState(context);
if (theState is AccessDetermined) {
return theState.memberIsOwner(app.documentID);
}
return false;
}