BloomModule constructor

const BloomModule({
  1. required String name,
  2. String version = '1.0.0',
  3. String description = '',
})

Creates a BloomModule annotation.

Implementation

const BloomModule({
  required this.name,
  this.version = '1.0.0',
  this.description = '',
});