TestGridSessionArtifact.fromJson constructor
Implementation
factory TestGridSessionArtifact.fromJson(Map<String, dynamic> json) {
return TestGridSessionArtifact(
filename: json['filename'] as String?,
type: (json['type'] as String?)?.toTestGridSessionArtifactType(),
url: json['url'] as String?,
);
}