InspectorService class abstract
Service helper for sqlite inspector.
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
-
close(
) → Future< void> - Close the database if databse stil open.
-
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
-
delete(
String id) → Future< int?> -
Delete data sqlite with given
id
. -
deleteAll(
) → Future< void> - Delete all data sqlite inspector.
-
get(
String id) → Future< Inspector?> -
Return Inspector with given
id
. -
getAll(
{int? limit, int? offset}) → Future< List< Inspector> > -
Return list Inspector with given
limit
andoffset
. -
insert(
Inspector inspector) → Future< void> -
Insert data to sqlite with given
inspector
. -
updateResponse(
String uuid, ResponseInspector response) → Future< void> -
Update data to sqlite with given
inspector
.