unsupportedPlatformDescription property

String unsupportedPlatformDescription

Implementation

String get unsupportedPlatformDescription => _unsupportedPlatformDescription;
void unsupportedPlatformDescription=(String? text)

Implementation

set unsupportedPlatformDescription(String? text) {
  if (text == null || text.isEmpty) {
    return;
  }
  _unsupportedPlatformDescription = text;
}