updateMetaData method
Future<void>
updateMetaData(
- List<
IdentifierMetaData> ? identifierMetaData, - dynamic callback(
- FlyResponse response
override
This method is used to update the metadata.
Implementation
@override
Future<void> updateMetaData(List<IdentifierMetaData>? identifierMetaData,
Function(FlyResponse response)? callback) async {
String? val = FlyConstants.empty;
try {
val = await mirrorFlyMethodChannel.invokeMethod('updateMetaData', {
"metaData": identifierMetaData != null
? List<dynamic>.from(identifierMetaData.map((x) => x.toMap()))
: null
});
LogMessage.d('updateMetaData', ' $val');
callback?.call(
FlyResponse(true, val ?? FlyConstants.empty, FlyConstants.empty));
// return val;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(e.code, e.message, e.details)));
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
}
}