IfdContainer.from constructor

IfdContainer.from(
  1. IfdContainer? other
)

Implementation

IfdContainer.from(IfdContainer? other) : directories = {} {
  other?.directories.forEach(
    (key, value) => directories[key] = value.clone(),
  );
}