blob: 6edede21612e0d7eaeb15e4179a700ebedebae98 [file] [log] [blame]
/// This library is excluded from the documentation
/// even though it is located in the lib folder by
/// using the nodoc tag.
/// @nodoc
library excluded;
export 'example.dart' show Apple;
const EXCLUDE = 'exclude';
class Excluded {
void excludedMethod(String s) {}
}