Organization constructor

Organization({
  1. required String id,
  2. required String name,
  3. required String role,
  4. required bool isDefault,
})

Implementation

Organization({required this.id, required this.name, required this.role, required this.isDefault});