TestGridSessionArtifact.fromJson constructor

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

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?,
  );
}