updateOrg abstract method

Future<Org> updateOrg({
  1. required String orgId,
  2. Key? orgKey,
  3. List<ContactInput>? contacts,
  4. List<AddressInput>? addresses,
  5. String? config,
})

Update the org with the given org id. The org name and business reference cannot be updated as they are immutable once an org has been created and verified.

Implementation

Future<Org> updateOrg({
  required String orgId,
  Key? orgKey,
  List<ContactInput>? contacts,
  List<AddressInput>? addresses,
  String? config,
});