fromValue static method

PNAppMessageStyle fromValue(
  1. String style
)

Implementation

static PNAppMessageStyle fromValue(String style) {
  return values.firstWhere((element) {
    if (Platform.isAndroid) {
      return element.androidValue == style;
    } else if (Platform.isIOS) {
      return element.iOSValue == style;
    }
    return false;
  }, orElse: () => PNAppMessageStyle.platform);
}