SelectEntityScreen constructor

const SelectEntityScreen({
  1. required dynamic switchScreen(
    1. String, {
    2. String? device,
    3. List<String>? options,
    4. List<String>? tokens,
    5. String? user,
    }),
  2. required List<String> tenants,
  3. required String username,
  4. required String deviceId,
  5. required List<String> refreshTokens,
  6. Key? key,
})

Implementation

const SelectEntityScreen({
  required this.switchScreen,
  required this.tenants,
  required this.username,
  required this.deviceId,
  required this.refreshTokens,
  super.key,
});