RegistrationStep.fromJson constructor
Implementation
factory RegistrationStep.fromJson(Map<String, dynamic> json) {
return RegistrationStep(
id: json['id'] as String,
fieldKey: json['fieldKey'] as String,
path: json['path'] as String,
selected: json['selected'] as bool,
);
}