Convert string to bytes.
List<int> toBytes() { if (this == null) { throw ArgumentError('string: $this'); } return utf8.encode(this!); }