import img in angulkar code example
Example 1: how to refrence image in dart angular
@Component(
selector: 'my-app',
template: '<img src="packages/angular_app/logo.svg">')
class AppComponent {}
Example 2: angular img
<img alt="xxx" class="xxx" src="https://xxx/128x128.png">
<!--
-- Property binding with [] around the property to be bound
[src]= "accountInfo.profiles[0].image"
--interpolation binding syntax
src= "{{accountInfo.profiles[0].image}}"
-->