PlanEntryPriorityLow.fromJson constructor

PlanEntryPriorityLow.fromJson(
  1. Object? value
)

Implementation

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