onResult abstract method

DeviceInformationCheck onResult(
  1. dynamic onResult(
    1. DeviceInformationCheckResult
    )
)

Specifies the object that will be invoked with the DeviceInformationCheckResult containing the configuration mismatches an errors (if any) that occurred.

IMPORTANT
Providing the onResult callback is required.

Params:

  • onResult: the Function that will be invoked when the operation finishes.

Returns: a DeviceInformationCheck object.

Implementation

DeviceInformationCheck onResult(
  Function(DeviceInformationCheckResult) onResult,
);