fromValue static method

NotificationResults fromValue(
  1. String value
)

Implementation

static NotificationResults fromValue(String value) =>
    NotificationResults.values.firstWhere((e) => e.value == value,
        orElse: () => NotificationResults.undefined);