RegisterController.fromJson constructor

RegisterController.fromJson(
  1. String json
)

Initialize from JSON string

Implementation

factory RegisterController.fromJson(String json) {
  return RegisterController.fromMap(Map<String, dynamic>.from(jsonDecode(json)));
}