RestResourceDataSource constructor

RestResourceDataSource({
  1. required FilamentTransport transport,
  2. String prefix = '/api/mobile-panel',
  3. FilamentSchemaCache? cache,
  4. String? cacheKey,
})

Implementation

RestResourceDataSource({
  required FilamentTransport transport,
  String prefix = '/api/mobile-panel',
  FilamentSchemaCache? cache,
  String? cacheKey,
}) : this._(
       transport: transport,
       prefix: _normalisePrefix(prefix),
       cache: cache,
       cacheKey: cacheKey,
     );