convertToDartType method

Object? convertToDartType()

Implementation

Object? convertToDartType() {
  return switch (this) {
    YamlMap() => (this as YamlMap).toDartMap(),
    YamlList() => (this as YamlList).toDartList(),
    _ => value,
  };
}