sfxGen method

Future<Map<String, dynamic>> sfxGen(
  1. SFX schema
)

Implementation

Future<Map<String, dynamic>> sfxGen(SFX schema) async {
  final endpoint = '${audioBaseUrl}sfx';
  return await _post(endpoint, data: schema.toJson());
}