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