AccountSelectionContext.fromJson constructor Null safety
- Map<
String, dynamic> json
Alternate constructor that creates AccountSelectionContext from a json.
Params:
- json: contains the source for instance creation.
Implementation
factory AccountSelectionContext.fromJson(Map<String, dynamic> json) {
return AccountSelectionContextImpl.fromJson(json);
}