menu
kt_utils package
documentation
string_kt.dart
StringKt
plus method
plus method
dark_mode
light_mode
plus
method
String
?
plus
(
String
text
)
Merge text
Implementation
String? plus(String text) { if (this == null) { return text; } return '${this}$text'; }
kt_utils package
documentation
string_kt
StringKt
plus method
StringKt extension on
String
?