create method

Future<bool> create({
  1. required String coverImage,
  2. String? imagePath,
  3. String? voicePath,
  4. required int width,
  5. required int height,
})

Implementation

Future<bool> create({
  required String coverImage,
  String? imagePath,
  String? voicePath,
  required int width,
  required int height,
}) {
  throw UnimplementedError('create() has not been implemented.');
}