toMap method

Map<String, dynamic> toMap()

Convert to map for platform channel communication

Implementation

Map<String, dynamic> toMap() {
  return {
    'deviceUuid': deviceUuid,
    'unicastAddress': unicastAddress,
    'netKeyIndex': netKeyIndex,
    'appKeyIndex': appKeyIndex,
    'useFastProvisioning': useFastProvisioning,
    'timeoutSeconds': timeoutSeconds,
  };
}