PlatformApple constructor

PlatformApple({
  1. required String $id,
  2. required String $createdAt,
  3. required String $updatedAt,
  4. required String name,
  5. required PlatformType type,
  6. required String bundleIdentifier,
})

Implementation

PlatformApple({
  required this.$id,
  required this.$createdAt,
  required this.$updatedAt,
  required this.name,
  required this.type,
  required this.bundleIdentifier,
});