RulesConfigurationType.fromJson constructor

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

Implementation

factory RulesConfigurationType.fromJson(Map<String, dynamic> json) {
  return RulesConfigurationType(
    rules: (json['Rules'] as List)
        .whereNotNull()
        .map((e) => MappingRule.fromJson(e as Map<String, dynamic>))
        .toList(),
  );
}