UserProfileUserSettingsRStudioServerProAppSettings.fromMap constructor
UserProfileUserSettingsRStudioServerProAppSettings.fromMap(
- Map<String, dynamic> map
)
Implementation
factory UserProfileUserSettingsRStudioServerProAppSettings.fromMap(Map<String, dynamic> map) {
return UserProfileUserSettingsRStudioServerProAppSettings(
accessStatus: (() { final guardedValue = map['accessStatus']; if (guardedValue == null) return null; return pulumi.Input.fromValue(guardedValue as String); })(),
userGroup: (() { final guardedValue = map['userGroup']; if (guardedValue == null) return null; return pulumi.Input.fromValue(guardedValue as String); })(),
);
}