Skip to content

Commit

Permalink
Create finding-and-converting-json-values-in-dart.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
vandadnp committed Nov 15, 2022
1 parent b685ecb commit eeca2f3
Showing 1 changed file with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// 🐦 Twitter https://twitter.com/vandadnp
// πŸ”΅ LinkedIn https://linkedin.com/in/vandadnp
// πŸŽ₯ YouTube https://youtube.com/c/vandadnp
// πŸ’™ Free Flutter Course https://linktr.ee/vandadnp
// πŸ“¦ 11+ Hours Bloc Course https://youtu.be/Mn254cnduOY
// πŸ”Ά 7+ Hours MobX Course https://youtu.be/7Od55PBxYkI
// πŸ¦„ 8+ Hours RxSwift Coursde https://youtu.be/xBFWMYmm9ro
// 🀝 Want to support my work? https://buymeacoffee.com/vandad

import 'dart:developer' as devtools show log;

extension Log on Object? {
void log() =>
devtools.log(this?.toString() ?? '\x1b[101m\x1b[30mNULL\x1b[0m');
}

extension Find<K, V, R> on Map<K, V> {
R? find<T>(
K key,
R? Function(T value) cast,
) {
final value = this[key];
if (value != null && value is T) {
return cast(value as T);
} else {
return null;
}
}
}

const json = {
'name': 'Foo Bar',
'age': 20,
};

void testIt() {
// get the age
final String? ageAsString = json.find(
'age',
(int value) => 'Your age is $value',
);
ageAsString.log();
// force get the name using ! operator
final String helloName = json.find(
'name',
(String name) => 'Hello, $name',
)!;
helloName.log();
// non-existent key
final String? address = json.find(
'address',
(String address) => 'You live at $address',
);
address.log();
}

0 comments on commit eeca2f3

Please sign in to comment.