Board constructor
Board({})
Implementation
Board(
{this.id,
this.self,
this.name,
this.type,
this.admins,
this.location,
bool? canEdit,
bool? isPrivate,
bool? favourite})
: canEdit = canEdit ?? false,
isPrivate = isPrivate ?? false,
favourite = favourite ?? false;