swallowWhitespace property

bool? swallowWhitespace

Controls whether to swallow following whitespaces.

Returns true to swallow, false to accept whitespace. Returns null to use configuration from the previous bit.

By default, do swallow if not isInline.

Implementation

bool? get swallowWhitespace {
  final scopedIsInline = isInline;
  return scopedIsInline == null ? null : !scopedIsInline;
}