char_code.dart 90 B

12345
  1. extension StringCharCode on String {
  2. int get charCode {
  3. return codeUnitAt(0);
  4. }
  5. }