DenoConfigurationFile.fromJson constructor
Implementation
factory DenoConfigurationFile.fromJson(Map<String, dynamic> json) {
final schema = DenoConfigurationFileSchema.fromJson(json);
return DenoConfigurationFile(
compilerOptions: schema.compilerOptions,
importMap: schema.importMap,
lint: schema.lint,
fmt: schema.fmt,
tasks: schema.tasks,
unknown: schema.unknown,
fig: json['fig'] as Map<String, dynamic>?,
);
}