PlanEntryPriorityHigh.fromJson constructor
PlanEntryPriorityHigh.fromJson(
- Object? value
Implementation
factory PlanEntryPriorityHigh.fromJson(Object? value) {
final decoded = PlanEntryPriority.fromJson(value);
if (decoded is! PlanEntryPriorityHigh) {
throw const AcpWireDecodeException('Expected PlanEntryPriorityHigh.');
}
return decoded;
}