Update README.md (#236)

The `allowMultiple` option of `addOption` was no longer available, so this change will correct it to `addMultiOption`.
diff --git a/README.md b/README.md
index 379893b..f3afdc8 100644
--- a/README.md
+++ b/README.md
@@ -205,7 +205,7 @@
 
 ```dart
 var parser = ArgParser();
-parser.addOption('mode', allowMultiple: true);
+parser.addMultiOption('mode');
 var results = parser.parse(['--mode', 'on,off']);
 print(results['mode']); // prints '[on, off]'
 ```