NeoImage
---
**Description:** Widget will be used to show images.
**Parameters:**
| Parameter Name | Type | Is Required | Description | Default Value |
| - | - | - | - | - |
| imageUrn | String | Yes | Icon’s image | |
|dataKey | String? | No | This key is used to get data from workflow | null|
| width | double? | No | Width of the image | null |
| height | double? | No | Height of the image | null |
| aspectRatio | double? | No | Aspect ratio of the image. If aspect ratio is given, then only width or height should be provided to draw this widget | null |
| showGridBackground | bool? | No | Grid background's visibility flag | false |
| borderWidth | double? | No | Border width of the image | null |
| borderRadius | double? | No | Border radius of the image | 16 |
| borderColor | Color? | No | Color of the image | Colors.white |
| padding | [EdgeInsetsDirectional](https://hackmd.io/VbfdvqKyRUmeeeAVrModPQ)? | No | Padding of the widget | null |
**Example Json Model**
```json
{
"type": "neo_image",
"args": {
"imageUrn": "urn:local:images:securityImage:png",
"width": 120,
"height": 80,
"showGridBackground": true,
"borderWidth": 2,
"borderColor": "#fff",
"padding": 16
}
}
```