Input$GeneratePlanFromSimulateInput.fromJson constructor

Input$GeneratePlanFromSimulateInput.fromJson(
  1. Map<String, dynamic> data
)

Implementation

factory Input$GeneratePlanFromSimulateInput.fromJson(
    Map<String, dynamic> data) {
  final result$data = <String, dynamic>{};
  final l$checkout_id = data['checkout_id'];
  result$data['checkout_id'] = (l$checkout_id as String);
  final l$customer_id = data['customer_id'];
  result$data['customer_id'] = (l$customer_id as String);
  final l$simulation_id = data['simulation_id'];
  result$data['simulation_id'] = (l$simulation_id as String);
  return Input$GeneratePlanFromSimulateInput._(result$data);
}