GroupConfigurationParameter.fromJson constructor

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

Implementation

factory GroupConfigurationParameter.fromJson(Map<String, dynamic> json) {
  return GroupConfigurationParameter(
    name: json['Name'] as String,
    values: (json['Values'] as List?)
        ?.whereNotNull()
        .map((e) => e as String)
        .toList(),
  );
}