resolveStoreModeParam method

  1. @protected
String resolveStoreModeParam(
  1. bool? storeMode
)
inherited

Implementation

@protected
String resolveStoreModeParam(bool? storeMode) => storeMode != null
    ? storeMode
        ? '1'
        : '0'
    : 'auto';