factory TableList.fromMap( Map<String, dynamic> map, ) { return TableList( total: map['total'], tables: List<Table>.from( map['tables'].map((p) => Table.fromMap(p)), ), ); }