android property

AndroidCodeConfig get android

Configuration provided when CodeConfig.targetOS is OS.android.

Implementation

AndroidCodeConfig get android => switch (_syntax.android) {
  null => throw StateError(
    'Cannot access androidConfig if targetOS is not android.',
  ),
  final c => AndroidCodeConfig._(c),
};