isMagic static method
Implementation
static bool isMagic(dynamic value) {
if (value is String && value.startsWith('\$')) return true;
if (value is List && value.isNotEmpty && isMagic(value.first)) return true;
return false;
}
static bool isMagic(dynamic value) {
if (value is String && value.startsWith('\$')) return true;
if (value is List && value.isNotEmpty && isMagic(value.first)) return true;
return false;
}