fromInt static method

PrivacyStatus fromInt(
  1. int value
)

Implementation

static PrivacyStatus fromInt(int value) {
  return PrivacyStatus.values.firstWhere(
    (e) => e.value == value,
    orElse: () => PrivacyStatus.publicity,
  );
}