Environment.fromDatabaseRow constructor

Environment.fromDatabaseRow(
  1. PostgreSQLResultRow row
)

Implementation

factory Environment.fromDatabaseRow(PostgreSQLResultRow row) => Environment(
      id: row[0],
      createdAt: row[1],
      websiteId: row[2],
      engineId: row[3],
      endpointId: row[4],
      stackId: row[5],
      websiteUrl: row[6],
    );