Socialaccounts.fromJson constructor

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

Implementation

factory Socialaccounts.fromJson(Map<String, dynamic> json) {
  return Socialaccounts(
    facebook: Rxn<String>(json['facebook']),
    github: Rxn<String>(json['github']),
    instagram: Rxn<String>(json['instagram']),
    linkedin: Rxn<String>(json['linkedin']),
    reddit: Rxn<String>(json['reddit']),
    steam: Rxn<String>(json['steam']),
    twitch: Rxn<String>(json['twitch']),
    youtube: Rxn<String>(json['youtube']),
    discord: Rxn<String>(json['discord']),
  );
}