getDatabaseId method

int? getDatabaseId()

Get the id from the arguments.

Implementation

int? getDatabaseId() {
  if (arguments is Map) {
    return argumentsMap['id'] as int?;
  }
  return null;
}