isNotEmpty property

bool get isNotEmpty

Check if any absolute layout properties are set

Implementation

bool get isNotEmpty {
  return left != null ||
      top != null ||
      right != null ||
      bottom != null ||
      translateX != null ||
      translateY != null;
}