safeLength property

int get safeLength

Karakter Sayisini soyler. null ise -1 gelir

Implementation

//int get mcgLength => this == null ? -1 : length;
int get safeLength => this == null ? -1 : this!.length;