NIMMemberChangeAttachment constructor

NIMMemberChangeAttachment({
  1. required int type,
  2. List<String>? targets,
  3. String? extension,
})

Implementation

NIMMemberChangeAttachment({
  required int type,
  this.targets,
  String? extension,
}) : super(
        type: type,
        extension: extension,
      );