BuildingInsightsDetectedArrays.fromJson constructor
BuildingInsightsDetectedArrays.fromJson(
- Map json_
Implementation
BuildingInsightsDetectedArrays.fromJson(core.Map json_)
: this(
detectionStatus: json_['detectionStatus'] as core.String?,
latestCaptureDate: json_.containsKey('latestCaptureDate')
? Date.fromJson(
json_['latestCaptureDate']
as core.Map<core.String, core.dynamic>,
)
: null,
);