updateMetaData static method

dynamic updateMetaData({
  1. required List<IdentifierMetaData> identifierMetaDataList,
  2. dynamic flyCallback(
    1. 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);
}