select method

String select(
  1. String? message, {
  2. required List<String> options,
})

Implementation

String select(
  String? message, {
  required List<String> options,
}) =>
    actor.select(
      message ?? 'Select an option:',
      options: options,
    );