createBundle method
Creates a new bundle within this space.
final characterBundle = await characters.createBundle('main-chars');
Implementation
Future<Bundle> createBundle(
String bundleName, {
Map<String, String>? metadata,
}) async {
final response = await client.createBundle(path, bundleName, metadata: metadata);
return Bundle(response, client);
}