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