updateMyProfile method

Future<void> updateMyProfile(
  1. String name,
  2. String? email,
  3. String? mobile,
  4. String? status,
  5. String? image,
  6. dynamic callback(
    1. FlyResponse response
    ),
)

This method is used to update the current user profile.

Implementation

Future<void> updateMyProfile(String name, String? email, String? mobile,
    String? status, String? image, Function(FlyResponse response) callback) {
  throw UnimplementedError('has not been implemented.');
}