Skip to content

Instantly share code, notes, and snippets.

View opatajoshua's full-sized avatar

Opata Joshua opatajoshua

View GitHub Profile
@opatajoshua
opatajoshua / SimplifiedUri.dart
Created August 29, 2021 07:01
Flutter / Dart - How to convert complex objects to uri or query strings.
///A simple Flutter / Dart Utility class for converting complex objects to uri and query strings
///Sample usage on https://github.com/opatajoshua/SimplifiedUri
/*
final params = {
'name': 'John',
'columns': ['firstName', 'lastName'],
'ageRange': {
'from': 12,
'to': 60,
},