kt_utils 2.2.1 kt_utils: ^2.2.1 copied to clipboard
Useful extension methods such as forEachIndexed, roundDouble with precision etc.
kt_utils #
Usage #
Just import kt_utils.dart
import 'package:kt_utils/kt_utils.dart';
String Methods #
plus
- Merge text
toCapitalize
- Capitalize first letter
toInt
- Parse to int
toDouble
- Parse to double
reversed
- Reverse text
toTitleCase
- Capitalizes all words
containsDigit
- Check contains digit
isEmailValid
- Check email is valid
encodeBase64
- Encode text to Base64
decodeBase64
- Decode from base64 to readable text
isDigit
- Check text contains only digit
isLowerCase
- Check all letters is lower case
isUpperCase
- Check all letters is upper case
isAlpha
- Check text contains only letters
swapCase
- Change given text case
last
- Get last character
isNotNullEmpty
- Check string is not null and empty
Double Methods #
- Rounding number to decimal places (Deprecated)roundPrecision
roundDouble
- Rounding number to decimal places
List Methods #
forEachIndexed
- forEach with index
lastIndex
- Last index of list
random
- Return random object
count
- Return count of the given item
Check out example