getIsDense property

bool get getIsDense

Get the isDense parameter, retreives the one on the Artist() instance if no override

Implementation

bool get getIsDense {
  if (Artist().inputDecoration.isDense != null) {
    return Artist().inputDecoration.isDense!;
  } else {
    return true;
  }
}