Entry.fromJson constructor

Entry.fromJson(
  1. Map json_
)

Implementation

Entry.fromJson(core.Map json_)
    : this(
        itemCount: json_['itemCount'] as core.String?,
        predictedLabel: json_['predictedLabel'] as core.String?,
      );