どこに問題があるのかわからない。SystemCheck クラスをメインの Dart ファイルにインポートすると、このエラーが表示されます。
SystemCheck クラス:
import 'dart:io';
class SystemCheck{  
    getOperatingSystem() => Platform.operatingSystem;
    getUser() => Platform.localHostname;  
}
メインファイルにインポート:
import 'cz.felguide.core/system.dart';