$ContentTypeInfo.fromJson constructor

$ContentTypeInfo.fromJson(
  1. Map json_
)

Implementation

$ContentTypeInfo.fromJson(core.Map json_)
  : this(
      bestGuess: json_['bestGuess'] as core.String?,
      fromBytes: json_['fromBytes'] as core.String?,
      fromFileName: json_['fromFileName'] as core.String?,
      fromHeader: json_['fromHeader'] as core.String?,
      fromUrlPath: json_['fromUrlPath'] as core.String?,
    );