getUnsupportedErrorMessage static method

String getUnsupportedErrorMessage({
  1. required String attribute,
  2. required String location,
})

Implementation

static String getUnsupportedErrorMessage({
  required String attribute,
  required String location,
}) {
  return '''
  Access to $attribute has been intentionally blocked in metrics.$location.
  This property should not be used or accessed directly, as its usage has been deprecated or is reserved for internal purposes only.
  Please review your implementation to avoid relying on this property and ensure your application's compatibility with future changes.'
''';
}