getTrackSettings method

Future<HMSTrackSetting> getTrackSettings()

Method to get Track Settings.

Implementation

Future<HMSTrackSetting> getTrackSettings() async {
  var result =
      await PlatformService.invokeMethod(PlatformMethod.getTrackSettings);
  HMSTrackSetting trackSetting = HMSTrackSetting.fromMap(result);
  return trackSetting;
}