OutputFileUriValue.fromJson constructor

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

Implementation

factory OutputFileUriValue.fromJson(Map<String, dynamic> json) {
  return OutputFileUriValue(
    fileName: json['fileName'] as String,
  );
}