razorpay / razorpay-flutter

Razorpay Flutter Plugin
MIT License
106 stars 144 forks source link

Fixed: missing init of `responseBody` in `PaymentFailureResponse.from` method #358

Open psyirius opened 6 months ago

psyirius commented 6 months ago

Fixed: missing init of responseBody in PaymentFailureResponse.from method

var responseBody;

to

var responseBody = map['responseBody'] as Map<dynamic, dynamic>?;