ObjectUtil class
Object Util.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
getLength(
Object? value) → int - get length.
-
isEmpty(
Object? object) → bool - Returns true String or List or Map is empty.
-
isEmptyList(
Iterable? list) → bool - Returns true if the list is null or 0-length.
-
isEmptyMap(
Map? map) → bool - Returns true if there is no key/value pair in the map.
-
isEmptyString(
String? str) → bool - Returns true if the string is null or 0-length.
-
isNotEmpty(
Object? object) → bool - Returns true String or List or Map is not empty.
-
twoListIsEqual(
List? listA, List? listB) → bool - Returns true Two List Is Equal.