OutdatedLibrary.fromJson constructor

OutdatedLibrary.fromJson(
  1. Map json_
)

Implementation

OutdatedLibrary.fromJson(core.Map json_)
    : this(
        learnMoreUrls: (json_['learnMoreUrls'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        libraryName: json_['libraryName'] as core.String?,
        version: json_['version'] as core.String?,
      );