Label.fromJson constructor
Implementation
factory Label.fromJson(Map<String, dynamic> json) {
return Label(
arn: json['arn'] as String?,
createdTime: json['createdTime'] as String?,
description: json['description'] as String?,
lastUpdatedTime: json['lastUpdatedTime'] as String?,
name: json['name'] as String?,
);
}