getProperty method
Returns a property with key from DBCommand.properties or
from the parameter properties.
Implementation
dynamic getProperty(String key, {Map<String, dynamic>? properties}) {
var value = this.properties[key] ?? properties?[key];
return value;
}