platform.dart 165 B

123456789101112
  1. abstract class PlatformInfo{
  2. }
  3. class PlatformInfoIOS implements PlatformInfo{
  4. double deviceVersion = 0;
  5. }
  6. class PlatformInfoAndroid implements PlatformInfo{
  7. }