Managing OpenAPI specification

The usual document structure Taking a look at the OpenAPI specification file, there are several distinct sections: Information - which usually includes the title, version, some description, terms of service, etc.Servers - where we describe the servers that we use, usually split into production, staging, etc.Paths - resources that our…

Continue ReadingManaging OpenAPI specification

Error Handling in Flutter

  • Post author:
  • Post category:Blog

Foreword Due to the rising popularity of Flutter I feel it’s a good time to review some of the aspects of keeping your code clean and maintainable. One of the things that developers might not pay so much attention to while building apps is error handling. While it might not…

Continue ReadingError Handling in Flutter