Website.fromDatabaseRow constructor
Website.fromDatabaseRow(
- PostgreSQLResultRow row
Implementation
factory Website.fromDatabaseRow(PostgreSQLResultRow row) => Website(
id: row[0],
createdAt: row[1],
name: row[2],
title: row[3],
adminUsername: row[4],
adminPassword: row[5],
adminEmail: row[6],
postsUrlStructure: row[7],
dbRootPassword: row[8],
dbUser: row[9],
dbPassword: row[10],
dbTablesPrefix: row[11],
);