info property
String
get
info
Implementation
String get info {
return [
'type: ${type.name}',
'table: $table',
if (where != null) 'where: $where',
if (parameters.isNotEmpty) 'parameters: $parameters',
if (variables.isNotEmpty) 'variables: $variables',
'returnLastID: $returnLastID',
if (orderBy != null) 'orderBy: $orderBy',
if (lastID != null) 'lastID: $lastID',
'executed: $executed',
if (results != null) '$results',
].join(', ');
}