getPlatformVersion method

Future<String?> getPlatformVersion()

플랫폼 버전 정보를 가져오는 메서드, 추상 메서드로 구현되어 있지 않으므로 사용자 정의 플랫폼 구현체에서 재정의되어야 한다.

Implementation

Future<String?> getPlatformVersion() {
  throw UnimplementedError('platformVersion() has not been implemented.');
}