Account.fromJson constructor

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

Implementation

factory Account.fromJson(Map<String, dynamic> json) =>
    new Account(json["identifier"],
        userData: new Map<String, String>.from(json["userData"]));