RegistrationStep.fromJson constructor

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

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,
  );
}