fromString static method
Implementation
static XRayPlatform fromString(String? value) {
return XRayPlatform.values.firstWhere(
(p) => p.name == value,
orElse: () => XRayPlatform.unknown,
);
}
static XRayPlatform fromString(String? value) {
return XRayPlatform.values.firstWhere(
(p) => p.name == value,
orElse: () => XRayPlatform.unknown,
);
}