TagOptionDetail.fromJson constructor

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

Implementation

factory TagOptionDetail.fromJson(Map<String, dynamic> json) {
  return TagOptionDetail(
    active: json['Active'] as bool?,
    id: json['Id'] as String?,
    key: json['Key'] as String?,
    owner: json['Owner'] as String?,
    value: json['Value'] as String?,
  );
}