fromJson method
Creates an instance from json
. If json
is null, returns null.
Implementation
static Attributes fromJson(Map<String, dynamic> json) =>
json == null ? null : Attributes(json);
Creates an instance from json
. If json
is null, returns null.
static Attributes fromJson(Map<String, dynamic> json) =>
json == null ? null : Attributes(json);