CreatePlatformApplicationResponse.fromXml constructor

CreatePlatformApplicationResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory CreatePlatformApplicationResponse.fromXml(_s.XmlElement elem) {
  return CreatePlatformApplicationResponse(
    platformApplicationArn:
        _s.extractXmlStringValue(elem, 'PlatformApplicationArn'),
  );
}