metaData property
Property that returns the metaData object.
Returns: the MetaData
.
Implementation
static Future<MetaData> get metaData async {
try {
final operationId = const Uuid().v4();
final result = await _platform.metaData.metaData(operationId);
return result;
} on PlatformException catch (platformException) {
throw platformException.toSdkException();
}
}