getCurrentUser method

Future<Map<String, dynamic>> getCurrentUser()

Get the current user information.

This method returns information about the currently logged in user, including userId, userName, userEmail, and userPhone.

Returns a map containing the current user information.

Implementation

Future<Map<String, dynamic>> getCurrentUser() {
  throw UnimplementedError('getCurrentUser() has not been implemented.');
}