Filter.fromJson constructor
Implementation
factory Filter.fromJson(Map<String, dynamic> json) {
return Filter(
creationDateTime: timeStampFromJson(json['creationDateTime']),
datasetGroupArn: json['datasetGroupArn'] as String?,
failureReason: json['failureReason'] as String?,
filterArn: json['filterArn'] as String?,
filterExpression: json['filterExpression'] as String?,
lastUpdatedDateTime: timeStampFromJson(json['lastUpdatedDateTime']),
name: json['name'] as String?,
status: json['status'] as String?,
);
}