type property

String get type

Implementation

String get type {
  switch (this) {
    case MFALevel.DEFAULT:
      return "default";
    case MFALevel.OPTIONAL:
      return "optional";
    case MFALevel.MANDATORY:
      return "mandatory";
    case MFALevel.NONE:
      return "none";
    default:
      return "default";
  }
}