jsonBody function

dynamic jsonBody()

Implementation

dynamic jsonBody() {
  /// MODIFY CODE ONLY BELOW THIS LINE

  // create json body with status false
  return json.encode({
    "status": false,
  });

  /// MODIFY CODE ONLY ABOVE THIS LINE
}