Added create connection

This commit is contained in:
Juan Gilsanz Polo 2022-09-26 18:49:41 +02:00
parent a97ae20631
commit 3acfc7c5a5
10 changed files with 411 additions and 21 deletions

View file

@ -1,14 +1,16 @@
class Server {
final String name;
final String connectionMethod;
final String domain;
final String? path;
final int? port;
final String user;
final String password;
final bool defaultServer;
final String id;
String name;
String connectionMethod;
String domain;
String? path;
int? port;
String user;
String password;
bool defaultServer;
const Server({
Server({
required this.id,
required this.name,
required this.connectionMethod,
required this.domain,