createDraft method
Creates a draft for the given channelId of type channelType.
Implementation
Future<CreateDraftResponse> createDraft(
DraftMessage draft,
String channelId,
String channelType,
) => _chatApi.message.createDraft(
channelId,
channelType,
draft,
);