Attribute.fromJson constructor

Attribute.fromJson(
  1. Map<String, dynamic> j
)

Implementation

factory Attribute.fromJson(Map<String, dynamic> j) =>
    Attribute(j['key'], _unwrapValue(j['value'] as Map<String, dynamic>));