effectiveOptions property

List<String>? get effectiveOptions

Get the effective options list.

Implementation

List<String>? get effectiveOptions {
  if (options != null) return options;
  if (getOptions != null) return getOptions!();
  return null;
}