getUserProfile method
Implementation
@override
Future<dynamic> getUserProfile() async {
if (isInitialize) {
final userProfile =
await methodChannel.invokeMethod<dynamic>('get-user-profile');
return userProfile;
} else {
throw FlutterError("okta not initialize");
}
}