createSticker method
Create a sticker transaction.
Implementation
Future<void> createSticker(StickerTransaction data) =>
_apiClient.createSticker(data.toJson()).catchError((error) {
_crashlytics?.recordError(error, StackTrace.current);
throw error;
});