parameters property

Map<String, String?> get parameters

Implementation

Map<String, String?> get parameters {
  if (_shouldUseMock) {
    return GetTestMode.parameters;
  }

  return rootController.rootDelegate.parameters;
}