getDatabaseId method
Get the id from the arguments.
Implementation
int? getDatabaseId() {
if (arguments is Map) {
return argumentsMap['id'] as int?;
}
return null;
}
Get the id from the arguments.
int? getDatabaseId() {
if (arguments is Map) {
return argumentsMap['id'] as int?;
}
return null;
}