QueryAppliedPlanRequest.fromJson constructor

QueryAppliedPlanRequest.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory QueryAppliedPlanRequest.fromJson(Map<String, dynamic> json) {
  return QueryAppliedPlanRequest(
    name: json.valueAsString<String?>('name', acceptCamelCase: true),
  );
}