ListAutonomousDbVersionsResponse.fromJson constructor
ListAutonomousDbVersionsResponse.fromJson(
- Map json_
Implementation
ListAutonomousDbVersionsResponse.fromJson(core.Map json_)
: this(
autonomousDbVersions: (json_['autonomousDbVersions'] as core.List?)
?.map((value) => AutonomousDbVersion.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);