getExtensionProperty abstract method
Future<String>
getExtensionProperty({
- required String provider,
- required String extension,
- required String key,
- required int bufLen,
- MediaSourceType type = MediaSourceType.unknownMediaSource,
Gets detailed information on the extensions.
providerThe name of the extension provider.extensionThe name of the extension.keyThe key of the extension.bufLenMaximum length of the JSON string indicating the extension property. The maximum value is 512 bytes.typeSource type of the extension. See MediaSourceType.
Returns The extension information, if the method call succeeds. An empty string, if the method call fails.
Implementation
Future<String> getExtensionProperty(
{required String provider,
required String extension,
required String key,
required int bufLen,
MediaSourceType type = MediaSourceType.unknownMediaSource});