targetPlatform property

TargetPlatform targetPlatform

Implementation

TargetPlatform get targetPlatform {
  switch (this) {
    case TestPlatform.android:
      return TargetPlatform.android;
    case TestPlatform.iOS:
      return TargetPlatform.iOS;
  }
}