joinArgsFull method

String joinArgsFull()

add ', ' between and a trailing ',' if not empty

Implementation

String joinArgsFull() {
  if (isEmpty) {
    return '';
  } else {
    return join(', ') + ',';
  }
}