ApptiveGrid.withClient constructor

const ApptiveGrid.withClient({
  1. Key? key,
  2. required ApptiveGridClient? client,
  3. Widget? child,
  4. ApptiveGridOptions options = const ApptiveGridOptions(),
})

Creates ApptiveGrid with a shared defined ApptiveGridClient

Implementation

const ApptiveGrid.withClient({
  super.key,
  required this.client,
  this.child,
  this.options = const ApptiveGridOptions(),
});