addFlags method

Intent addFlags(
  1. int flags
)

Implementation

Intent addFlags(int flags) {
  // if (_flags & IMMUTABLE_FLAGS == IMMUTABLE_FLAGS) return;
  _flags |= flags;
  return this;
}