getSlash property Null safety
Getter used to change "" to "/" in paths if Windows is the platform.
Implementation
String get getSlash => Platform.isWindows ? r'\' : '/';
Getter used to change "" to "/" in paths if Windows is the platform.
String get getSlash => Platform.isWindows ? r'\' : '/';