getDevicePlatformByValue static method

dynamic getDevicePlatformByValue(
  1. String platform
)

Implementation

static getDevicePlatformByValue(String platform) {
  return DevicePlatform.values.firstWhere((e) => e.value == platform);
}