class Permission { final int? id; final String name; Permission({this.id, required this.name}); factory Permission.fromMap(Map map) => Permission( id: map['id'], name: map['name'], ); Map toMap() => { 'id': id, 'name': name, }; }