Organization constructor

Organization(
  1. {required String code,
  2. required String name}
)

Implementation

Organization({
  required this.code,
  required this.name,
});