ExtraAccountMetaList.fromJson constructor

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

Implementation

factory ExtraAccountMetaList.fromJson(Map<String, dynamic> json) {
  return ExtraAccountMetaList(
      count: json["count"],
      extraAccounts: (json["extraAccounts"] as List)
          .map((e) => ExtraAccountMeta.fromJson(e))
          .toList());
}