dart_eval icon indicating copy to clipboard operation
dart_eval copied to clipboard

Multiple ( ? ) null check operator in nested optional object - not work.

Open leefordjudes opened this issue 10 months ago • 0 comments

This code is working print( 'pincode2: ${data.partyInfo?.address != null ? data.partyInfo!.address?.pincode : ''}');

but this code not work print('pincode3: ${data.partyInfo?.address?.pincode}');

image

Kindly resolve it.

leefordjudes avatar Apr 23 '24 09:04 leefordjudes