bool isDataOnlyNewLines(Object data) { if (data is! String || data.isEmpty) return false; return RegExp('^(\n)+\$').hasMatch(data); }