FileCaptureDetail.fromJson constructor
Implementation
factory FileCaptureDetail.fromJson(Map<String, dynamic> json) {
return FileCaptureDetail(
path: json['path'] as String?,
name: json['name'] as String?,
type: json['type'] as String?,
);
}