Last updated:
0 purchases
indent string
indent_string #
Indent each line in a string
Usage #
import 'package:indent_string/indent_string.dart';
// Use as a regular function...
print(indentString('Unicorns\nRainbows', count: 4));
// => ' Unicorns\n Rainbows'
// ...or as an extension on Strings
print('Unicorns\nRainbows'.indent(count: 4));
// => ' Unicorns\n Rainbows'
copied to clipboard
Credits #
indent-string by Sindre Sorhus
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.