fromString static method

dynamic fromString(
  1. String text
)

Implementation

static fromString(String text) {
  return KeyRecoveryStatus.values.firstWhere((element) => element._text == text);
}