RegisterController.fromJson constructor
RegisterController.fromJson(
- String json
Initialize from JSON string
Implementation
factory RegisterController.fromJson(String json) {
return RegisterController.fromMap(Map<String, dynamic>.from(jsonDecode(json)));
}