getMetaData static method

dynamic getMetaData({
  1. required dynamic flyCallback(
    1. FlyResponse response
    ),
})

Provides information about the metadata of logged in with metadata .

This method fetches the IdentifierMetaData from the Mirrorfly platform. from current logged in user.

Implementation

static getMetaData({required Function(FlyResponse response) flyCallback}) {
  return FlyChatFlutterPlatform.instance.getMetaData(flyCallback);
}