UserMigrationBean.fromJson constructor

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

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?,
  );
}