value method

String? value()

Implementation

String? value(){
  switch(this){
    case NUIAuthModule.AUTH: return "Authentication";
    case NUIAuthModule.PUSH: return "Push Notification";
    case NUIAuthModule.FORM: return "Form";
    default: return null;
  }
}