input method

String input(
  1. String? message, {
  2. Object? defaultValue,
})

Implementation

String input(String? message, {Object? defaultValue}) => actor.input(
      prompt: message ?? 'Input:',
      defaultValue: defaultValue,
    );