updateMetaData static method
dynamic
updateMetaData({
- required List<
IdentifierMetaData> identifierMetaDataList, - dynamic flyCallback(
- FlyResponse response
Provides information about the metadata of logged in with metadata .
This method update the IdentifierMetaData from the Mirrorfly platform. to current logged in user
Implementation
static updateMetaData(
{required List<IdentifierMetaData> identifierMetaDataList,
Function(FlyResponse response)? flyCallback}) {
return FlyChatFlutterPlatform.instance
.updateMetaData(identifierMetaDataList, flyCallback);
}