Variable.fromMap constructor
Implementation
factory Variable.fromMap(Map<String, dynamic> map) {
return Variable(
$id: map['\$id'].toString(),
$createdAt: map['\$createdAt'].toString(),
$updatedAt: map['\$updatedAt'].toString(),
key: map['key'].toString(),
value: map['value'].toString(),
functionId: map['functionId'].toString(),
);
}