firstLine property

String? firstLine

Returns the first line from the command or null if no lines where returned

Implementation

String? get firstLine {
  String? first;
  _forEach((line) {
    first ??= line;
    return false;
  });
  return first;
}