GetPlanResponse.fromJson constructor

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

Implementation

factory GetPlanResponse.fromJson(Map<String, dynamic> json) {
  return GetPlanResponse(
    pythonScript: json['PythonScript'] as String?,
    scalaCode: json['ScalaCode'] as String?,
  );
}