DevicePosture.fromJson constructor

DevicePosture.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DevicePosture.fromJson(Map<String, dynamic> json) {
  return DevicePosture(
    type: DevicePostureType.fromJson(json['type'] as String),
  );
}