copyrightedMusicGetStandardPitch method

Future copyrightedMusicGetStandardPitch(
  1. String resourceID
)

Implementation

Future<dynamic> copyrightedMusicGetStandardPitch(String resourceID) async {
  final promise = ZegoFlutterEngine.copyMusic?.getStandardPitch(resourceID);
  final result = await promiseToFuture(promise);
  final Map<dynamic, dynamic> map = {};
  map['errorCode'] = getProperty(result, 'errorCode');
  map['pitch'] = stringifyJSON(getProperty(result, 'pitch'));
  return map;
}