UserKey.fromJson constructor

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

Implementation

factory UserKey.fromJson(Map<String, Object?> json) {
  return UserKey(
    accountId: json[r'accountId'] as String?,
    key: json[r'key'] as String?,
  );
}