userProfile method

Future<Map<String, dynamic>> userProfile(
  1. String token
)

Implementation

Future<Map<String, dynamic>> userProfile(String token) async {
  assert(
    await SjSdkTestingPlatform.instance.isInitialized,
    "Please call SjSdkTesting.init() before using this method",
  );
  return SjSdkTestingPlatform.instance.userProfile(token);
}