isSpace function

bool isSpace(
  1. int? rune
)

Implementation

bool isSpace(final int? rune) => rune == space || rune == tab;