MmCreatePostRequest constructor

MmCreatePostRequest({
  1. required String channelId,
  2. required String message,
  3. String? rootId,
  4. List<String> fileIds = const [],
  5. Map? props,
})

Returns a new MmCreatePostRequest instance.

Implementation

MmCreatePostRequest({
  required this.channelId,
  required this.message,
  this.rootId,
  this.fileIds = const [],
  this.props,
});