NFTAttributes.fromJson constructor

NFTAttributes.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory NFTAttributes.fromJson(Map<String, dynamic> json) => NFTAttributes(
      displayType: json['display_type'],
      traitType: json['trait_type'],
      value: json['value'],
    );