InputPath.fromYaml constructor

InputPath.fromYaml(
  1. dynamic yaml
)

Implementation

factory InputPath.fromYaml(dynamic yaml) {
  return InputPath(
    assets: yaml != null ? yaml['assets'] : null,
    appIcon: yaml != null ? yaml['app_icon'] : null,
    translationFile: yaml != null ? yaml['translation_file'] : null,
  );
}