ImageTestsConfiguration.fromJson constructor

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

Implementation

factory ImageTestsConfiguration.fromJson(Map<String, dynamic> json) {
  return ImageTestsConfiguration(
    imageTestsEnabled: json['imageTestsEnabled'] as bool?,
    timeoutMinutes: json['timeoutMinutes'] as int?,
  );
}