Cert.fromJson constructor

Cert.fromJson(
  1. JSONMap map
)

Implementation

factory Cert.fromJson(JSONMap map) {
  return Cert(
    authAddress: map['auth_address'],
    authType: map['auth_type'],
    authUserName: map['auth_user_name'],
    domain: map['domain'],
    selected: map['selected'],
  );
}