blogPostSchema top-level property

ObjectSchema blogPostSchema
final

Generated schema for BlogPost

Implementation

final blogPostSchema = Ack.object({
  'title': Ack.string(),
  'content': Ack.string(),
  'tags': Ack.list(Ack.string()),
  'locations': Ack.list(addressSchema),
});