line method

Future<String?> line(
  1. String? type
)

Print a line with an optional type (e.g., dashed, solid).

Implementation

Future<String?> line(String? type) {
  throw UnimplementedError('line() has not been implemented.');
}