AdditionalInfo.fromJson constructor

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

Implementation

AdditionalInfo.fromJson(Map<String, dynamic> json) {
  params =
      ((json['Param'] ?? []) as List).map((e) => Param.fromJson(e)).toList();
}