AddressStage.fromJson constructor

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

Implementation

AddressStage.fromJson(Map<String, dynamic> json) {
  name = json["name"];
  showGuidance = json["showGuidance"];
  useLiveCapture = json["liveCapture"];
  useMlAssistance = json["useMLAssistance"];
  retryLimit = json["retryLimit"];
}