UpdateBasicGroup constructor

const UpdateBasicGroup({
  1. required BasicGroup basicGroup,
  2. dynamic extra,
  3. int? clientId,
})

Some data of a basic group has changed. This update is guaranteed to come before the basic group identifier is returned to the application

Implementation

const UpdateBasicGroup({
  required this.basicGroup,
  this.extra,
  this.clientId,
});