BloomMobileApp constructor

const BloomMobileApp({
  1. Key? key,
  2. required BloomNode home,
  3. String title = 'Bloom Native Mobile',
})

Creates a BloomMobileApp mounting home.

Implementation

const BloomMobileApp({
  super.key,
  required this.home,
  this.title = 'Bloom Native Mobile',
});