Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
fix(winrtgen): fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
halildurmus committed Nov 30, 2023
1 parent 91f8d48 commit cab3a16
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/winrtgen/example/example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,16 @@ void printClass() {
print(format(classProjection));
}

void main() {
void main() async {
await WinRTMetadataStore.loadMetadata();

printEnum();
printStruct();
printMethod();
printGetter();
printSetter();
printInterface();
printClass();

WinRTMetadataStore.close();
}

0 comments on commit cab3a16

Please sign in to comment.