CreateProfileResponse.fromJson constructor

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

Implementation

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