DirPath.fromJson constructor

DirPath.fromJson(
  1. Object? json_
)

Returns a new instance from a JSON value. May throw if the value does not have the expected structure.

Implementation

factory DirPath.fromJson(Object? json_) {
  final json = json_ is Map
      ? _spec.fields.map((f) => json_[f.label]).toList(growable: false)
      : json_;
  return switch (json) {
    [final path, final name, final allRecursive] ||
    (final path, final name, final allRecursive) =>
      DirPath(
        path: path is String ? path : (path! as ParsedString).value,
        name: Option.fromJson(
            name,
            (some) =>
                some is String ? some : (some! as ParsedString).value).value,
        allRecursive: allRecursive! as bool,
      ),
    _ => throw Exception('Invalid JSON $json_')
  };
}