copyWith method

FlutterConsoleData copyWith({
  1. TextInputType? keyboardType,
  2. String? consoleContent,
  3. bool? show,
})

Implementation

FlutterConsoleData copyWith({
  TextInputType? keyboardType,
  String? consoleContent,
  bool? show,
}) =>
    FlutterConsoleData(
      keyboardType: keyboardType ?? this.keyboardType,
      consoleContent: consoleContent ?? this.consoleContent,
      show: show ?? this.show,
    );