( details: ScanMessage )
| 187 | } |
| 188 | |
| 189 | sendMessage ( details: ScanMessage ) { |
| 190 | if ( details.status ) { |
| 191 | this.status = details.status |
| 192 | } |
| 193 | |
| 194 | if ( typeof this.messageReceiver === 'function' ) { |
| 195 | this.messageReceiver( details ) |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | get hasInfoPlist () { |
| 200 | return Object.keys( this.infoPlist ).length > 0 |
no outgoing calls
no test coverage detected