Model class
- Inheritance
- Implementers
Constructors
-
Model([Map<
String, dynamic> ? _rootData = const {}]) -
const
- Model.from(BaseModel? other)
-
factory
-
Model.fromJson([Map<
String, dynamic> ? otherData]) -
const
- Model.fromJsonString(String source)
-
factory
- Model.of(Model other)
-
factory
Properties
- $className → String
-
The runtime type of this class as a String.
no setteroverride
- hashCode → int
-
The hash code for this object.
no setteroverride
-
rootData
→ Map<
String, dynamic> -
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
equals(
dynamic other) → bool -
Compares the BaseModel with another BaseModel using the
DeepCollectionEquality
and returnstrue
if they are equal.inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
sortedJson(
{bool includeNulls = false}) → Map< String, dynamic> -
Returns a Json i.e.
Map<String, dynamic>
representation of the BaseModel, with the keys sorted alphabetically.inherited -
toJson(
{bool includeNulls = false}) → Map< String, dynamic> -
Returns a Json i.e.
Map<String, dynamic>
representation of the BaseModel.override -
toJsonString(
) → String -
Returns a JSON string representation of the BaseModel.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
toUrl(
) → Uri -
Converts the current BaseModel to a Uri that can be used as a
distinct identifier. The model must not be too large to avoid exceeding
the maximum length of a URL.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override
Static Methods
-
fromJsonStringOrNull(
String? source) → Model? -
removeDuplicateProperties<
T extends Model> (Iterable< T> source, String k) → List<T> -
Returns a new list from
source
by removing duplicate properties with keys equal tok
. -
removeDuplicateRefs<
T extends Model> (Iterable< T> source) → List<T> -
Returns a new list from
source
by removing duplicate keys equal to 'ref'.