updateMyProfileImage static method
Future<void>
updateMyProfileImage({
- required String image,
- required dynamic flyCallback(
- FlyResponse response
image
can be File path String or Url of the image
Implementation
static Future<void> updateMyProfileImage(
{required String image,
required Function(FlyResponse response) flyCallback}) {
return FlyChatFlutterPlatform.instance
.updateMyProfileImage(image, flyCallback);
}