UserProfileUserSettingsCustomPosixUserConfig.fromMap constructor
Implementation
factory UserProfileUserSettingsCustomPosixUserConfig.fromMap(Map<String, dynamic> map) {
return UserProfileUserSettingsCustomPosixUserConfig(
gid: pulumi.Input.fromValue((map['gid'] as num).toInt()),
uid: pulumi.Input.fromValue((map['uid'] as num).toInt()),
);
}