decode static method

NativeContextDevice decode(
  1. Object result
)

Implementation

static NativeContextDevice decode(Object result) {
  result as List<Object?>;
  return NativeContextDevice(
    id: result[0] as String?,
    manufacturer: result[1] as String?,
    model: result[2] as String?,
    name: result[3] as String?,
    type: result[4] as String?,
    adTrackingEnabled: result[5] as bool?,
    advertisingId: result[6] as String?,
    trackingStatus: result[7] as String?,
    token: result[8] as String?,
  );
}