getDBCommandByID method
Returns the DBCommand with id
from dbCommands.
Implementation
DBCommand? getDBCommandByID(String id) =>
dbCommands.firstWhereOrNull((cmd) => cmd.id == id);
Returns the DBCommand with id
from dbCommands.
DBCommand? getDBCommandByID(String id) =>
dbCommands.firstWhereOrNull((cmd) => cmd.id == id);