RestResourceDataSource constructor
RestResourceDataSource({
- required FilamentTransport transport,
- String prefix = '/api/mobile-panel',
- FilamentSchemaCache? cache,
- 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,
);