RegistrationInfo.fromJson constructor Null safety

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

Alternate constructor that creates a RegistrationInfo from a json.

Params:

  • json: contains the source for instance creation.

Implementation

factory RegistrationInfo.fromJson(Map<String, dynamic> json) {
  return RegistrationInfoImpl.fromJson(json);
}