ThirdPartyUser.fromJson constructor

ThirdPartyUser.fromJson(
  1. Map<String, Object?> json
)

Implementation

ThirdPartyUser.fromJson(Map<String, Object?> json)
  : fields = json['fields'] as Map<String, Object?>,
    protocol = json['protocol'] as String,
    userid = json['userid'] as String;