FargatePlatformConfiguration.fromJson constructor

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

Implementation

factory FargatePlatformConfiguration.fromJson(Map<String, dynamic> json) {
  return FargatePlatformConfiguration(
    platformVersion: json['platformVersion'] as String?,
  );
}